├── CHANGELOG.txt ├── LICENSE ├── README.md ├── requirements.txt ├── setup.py ├── src ├── __init__.py └── static │ └── fingerprint.js └── test └── example_test.py /CHANGELOG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtekky/funcaptcha/HEAD/CHANGELOG.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtekky/funcaptcha/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtekky/funcaptcha/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtekky/funcaptcha/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtekky/funcaptcha/HEAD/setup.py -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtekky/funcaptcha/HEAD/src/__init__.py -------------------------------------------------------------------------------- /src/static/fingerprint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtekky/funcaptcha/HEAD/src/static/fingerprint.js -------------------------------------------------------------------------------- /test/example_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtekky/funcaptcha/HEAD/test/example_test.py --------------------------------------------------------------------------------