TLemur / ru_captcha

CAPTCHAFORUM

Administrator
1655989591445.png


RUCaptcha is Python rucaptcha.com API implementation

Feature:
  • Parallel token monitoring;
  • Event driven development programming model support;
  • You may switching to future or deffered implementation;
Usage example:
Code:
  ru_captcha = RUCaptcha(apikey="***")
  value = ru_captcha.parse(path="tests/test_000.jpg", is_regsense=1)
  #
  print("{value!r}".format(value=value))
  #
  while not value.is_ready():
      time.sleep(0.1)
  #
  print("{value!r}".format(value=value))
  #
  print(value.get_value())
  #
  ru_captcha.dispose()

Documentation https://github.com/TLemur/ru_captcha