Registry / devops / amazoncaptcha

amazoncaptcha

JSON →
library0.5.11pypypiunverified

Pure Python, lightweight, Pillow-based solver for Amazon text captchas. Uses image processing to extract text from captcha images. Current version: 0.5.11 (2025). Low release cadence.

pip install amazoncaptcha
INSTALL
IMPORT
SIG · AMAZONCAPTCHA
A
amazoncaptcha
devopspythonv0.5.11
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

AmazonCaptcha
✓ from amazoncaptcha import AmazonCaptcha
Main class for captcha solving
solver
✓ from amazoncaptcha import AmazonCaptcha
✗ from amazoncaptcha.solver import AmazonCaptcha
Older import path, still works but discouraged

Solve an Amazon captcha from an image file or direct link.

from amazoncaptcha import AmazonCaptcha captcha = AmazonCaptcha('captcha_image.jpg') solution = captcha.solve() print(solution) # For direct link: # link = 'https://.../captcha.jpg' # captcha = AmazonCaptcha.fromlink(link) # solution = captcha.solve()
Debug
Known issues
deprecatedThe `from amazoncaptcha.solver` import path is deprecated and may be removed in future versions.
fix
Use `from amazoncaptcha import AmazonCaptcha` instead.
affects: <=0.5.11
gotchaThe captcha image must be a screenshot of the full captcha widget, not a cropped text area. The solver expects the entire widget.
fix
Provide full captcha widget image.
affects: all
gotchaAmazon may change captcha format, breaking the solver. The library uses heuristic image processing and may fail on new captcha styles.
fix
Check GitHub issues for updates; consider fallback manual solving.
affects: all
Upgrade
Version history
0.5.11latest on PyPI · released May 14, 2023
Audit
Dependencies
PillowrequiredImage processing required
requestsoptionalDownloading captcha images
Agent activity
20 hits · last 30 days
node
18
OpenAI (training)
1
Resources
amazoncaptcha — pip install amazoncaptcha · libregistry