Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding deathbycaptcha.com service #7

Closed
wants to merge 6 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Add deathbycaptcha.com to services
  • Loading branch information
David Puerta committed Sep 21, 2022
commit 6b9e464bdaa187ef94460e6b73ca21f39c1a69f3
6 changes: 4 additions & 2 deletions unicaps/_service/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

import enum
# pylint: disable=import-self
from . import anti_captcha, azcaptcha, cptch_net, rucaptcha, twocaptcha
from . import anti_captcha, azcaptcha, cptch_net, rucaptcha, twocaptcha, deathbycaptcha


class CaptchaSolvingService(enum.Enum):
Expand All @@ -16,6 +16,7 @@ class CaptchaSolvingService(enum.Enum):
CPTCH_NET = "cptch.net"
RUCAPTCHA = "rucaptcha.com"
TWOCAPTCHA = "2captcha.com"
DEATHBYCAPTCHA = "deathbycaptcha.com"


# supported CAPTCHA solving services
Expand All @@ -24,5 +25,6 @@ class CaptchaSolvingService(enum.Enum):
CaptchaSolvingService.AZCAPTCHA: azcaptcha,
CaptchaSolvingService.CPTCH_NET: cptch_net,
CaptchaSolvingService.RUCAPTCHA: rucaptcha,
CaptchaSolvingService.TWOCAPTCHA: twocaptcha
CaptchaSolvingService.TWOCAPTCHA: twocaptcha,
CaptchaSolvingService.DEATHBYCAPTCHA: deathbycaptcha
}