├── .bumpversion.cfg ├── .coveragerc ├── .dockerignore ├── .editorconfig ├── .flake8 ├── .gitattributes ├── .github ├── CODEOWNERS └── ISSUE_TEMPLATE.md ├── .gitignore ├── .isort.cfg ├── .travis.yml ├── AUTHORS.rst ├── CONTRIBUTING.rst ├── Dockerfile ├── HISTORY.rst ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── docker-compose.yml ├── docs ├── Makefile ├── authors.rst ├── conf.py ├── contributing.rst ├── history.rst ├── index.rst ├── installation.rst ├── make.bat └── usage.rst ├── pytest.ini ├── reports └── .gitkeep ├── rest_framework_recaptcha ├── __init__.py ├── compat.py ├── conf.py ├── fields.py ├── locale │ ├── en │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ └── fr │ │ └── LC_MESSAGES │ │ ├── django.mo │ │ └── django.po └── validators.py ├── setup.cfg ├── setup.py ├── tests ├── __init__.py └── unit │ ├── __init__.py │ ├── drf_recaptcha_field │ ├── __init__.py │ ├── test_fields.py │ └── test_validators.py │ └── settings.py └── tox.ini /.bumpversion.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maximilien-R/django-rest-framework-recaptcha/HEAD/.bumpversion.cfg -------------------------------------------------------------------------------- /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maximilien-R/django-rest-framework-recaptcha/HEAD/.coveragerc -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maximilien-R/django-rest-framework-recaptcha/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maximilien-R/django-rest-framework-recaptcha/HEAD/.editorconfig -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maximilien-R/django-rest-framework-recaptcha/HEAD/.flake8 -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @Maximilien-R 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maximilien-R/django-rest-framework-recaptcha/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maximilien-R/django-rest-framework-recaptcha/HEAD/.gitignore -------------------------------------------------------------------------------- /.isort.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maximilien-R/django-rest-framework-recaptcha/HEAD/.isort.cfg -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maximilien-R/django-rest-framework-recaptcha/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maximilien-R/django-rest-framework-recaptcha/HEAD/AUTHORS.rst -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maximilien-R/django-rest-framework-recaptcha/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maximilien-R/django-rest-framework-recaptcha/HEAD/Dockerfile -------------------------------------------------------------------------------- /HISTORY.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maximilien-R/django-rest-framework-recaptcha/HEAD/HISTORY.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maximilien-R/django-rest-framework-recaptcha/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maximilien-R/django-rest-framework-recaptcha/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maximilien-R/django-rest-framework-recaptcha/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maximilien-R/django-rest-framework-recaptcha/HEAD/README.rst -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maximilien-R/django-rest-framework-recaptcha/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maximilien-R/django-rest-framework-recaptcha/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/authors.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../AUTHORS.rst 2 | -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maximilien-R/django-rest-framework-recaptcha/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contributing.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../CONTRIBUTING.rst 2 | -------------------------------------------------------------------------------- /docs/history.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../HISTORY.rst 2 | -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maximilien-R/django-rest-framework-recaptcha/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maximilien-R/django-rest-framework-recaptcha/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maximilien-R/django-rest-framework-recaptcha/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maximilien-R/django-rest-framework-recaptcha/HEAD/docs/usage.rst -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- 1 | [pytest] 2 | DJANGO_SETTINGS_MODULE = tests.unit.settings 3 | -------------------------------------------------------------------------------- /reports/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rest_framework_recaptcha/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "0.2.0" 2 | -------------------------------------------------------------------------------- /rest_framework_recaptcha/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maximilien-R/django-rest-framework-recaptcha/HEAD/rest_framework_recaptcha/compat.py -------------------------------------------------------------------------------- /rest_framework_recaptcha/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maximilien-R/django-rest-framework-recaptcha/HEAD/rest_framework_recaptcha/conf.py -------------------------------------------------------------------------------- /rest_framework_recaptcha/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maximilien-R/django-rest-framework-recaptcha/HEAD/rest_framework_recaptcha/fields.py -------------------------------------------------------------------------------- /rest_framework_recaptcha/locale/en/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maximilien-R/django-rest-framework-recaptcha/HEAD/rest_framework_recaptcha/locale/en/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /rest_framework_recaptcha/locale/en/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maximilien-R/django-rest-framework-recaptcha/HEAD/rest_framework_recaptcha/locale/en/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /rest_framework_recaptcha/locale/fr/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maximilien-R/django-rest-framework-recaptcha/HEAD/rest_framework_recaptcha/locale/fr/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /rest_framework_recaptcha/locale/fr/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maximilien-R/django-rest-framework-recaptcha/HEAD/rest_framework_recaptcha/locale/fr/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /rest_framework_recaptcha/validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maximilien-R/django-rest-framework-recaptcha/HEAD/rest_framework_recaptcha/validators.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [wheel] 2 | universal = 1 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maximilien-R/django-rest-framework-recaptcha/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/drf_recaptcha_field/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/drf_recaptcha_field/test_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maximilien-R/django-rest-framework-recaptcha/HEAD/tests/unit/drf_recaptcha_field/test_fields.py -------------------------------------------------------------------------------- /tests/unit/drf_recaptcha_field/test_validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maximilien-R/django-rest-framework-recaptcha/HEAD/tests/unit/drf_recaptcha_field/test_validators.py -------------------------------------------------------------------------------- /tests/unit/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maximilien-R/django-rest-framework-recaptcha/HEAD/tests/unit/settings.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maximilien-R/django-rest-framework-recaptcha/HEAD/tox.ini --------------------------------------------------------------------------------