├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.rst ├── recaptcha ├── __init__.py ├── constants.py └── fields.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | dist/ 3 | django_rest_recaptcha.egg-info/ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motius/django-rest-recaptcha/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motius/django-rest-recaptcha/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motius/django-rest-recaptcha/HEAD/README.rst -------------------------------------------------------------------------------- /recaptcha/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /recaptcha/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motius/django-rest-recaptcha/HEAD/recaptcha/constants.py -------------------------------------------------------------------------------- /recaptcha/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motius/django-rest-recaptcha/HEAD/recaptcha/fields.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motius/django-rest-recaptcha/HEAD/setup.py --------------------------------------------------------------------------------