Skip to main content

Integration with briteverify API

Project description

Latest PyPI version Build status

Helper for easy integration between django and briteverify.com service.

It supports Python2.6+, Django1.4+

Installation

$ pip install django-briteverify

Usage

In common case as you need is use BriteverifyFormMixin for your forms and specify a BRITEVERIFY_API_KEY:

# your_app/forms.py
from django import forms
from django_briteverify import BriteverifyFormMixin

class RegisterForm(BriteverifyFormMixin, forms.Form):
    email = forms.EmailField()

Set BRITEVERIFY_API_KEY as environment variable:

$ export BRITEVERIFY_API_KEY='YOUR_API_KEY'

Or define it directly in settings

# settings.py
BRITEVERIFY_API_KEY = 'YOUR_API_KEY'

You can specify field name which be used as source for verifying:

class RegisterForm(BriteverifyFormMixin, forms.Form):
    another_email = forms.EmailField()

    EMAIL_FIELD_NAME = 'another_email'

Also you can override error messages which raised if validation didn’t pass:

class RegisterForm(BriteverifyFormMixin, forms.Form):
    error_messages = {
        'invalid_email': _('This is an invalid email address. '
                           'Maybe you mistyped?'),
        'disposable_email': _('Please provide your real email address.')
    }

Contributing

  1. Fork the django-briteverify repo on GitHub.

  2. Clone your fork locally:

$ git clone git@github.com:your_name_here/django-briteverify.git
  1. Install your local copy into a virtualenv. Assuming you have virtualenvwrapper installed, this is how you set up your fork for local development:

$ mkvirtualenv django-briteverify
$ cd django-briteverify/
$ python setup.py develop
  1. Create a branch for local development:

 $ git checkout -b name-of-your-bugfix-or-feature

Now you can make your changes locally.
  1. When you’re done making changes, check that your changes pass the tests, including testing other Python versions with tox:

$ pip install tox
$ tox
  1. Commit your changes and push your branch to GitHub:

$ git add .
$ git commit -m "Your detailed description of your changes."
$ git push origin name-of-your-bugfix-or-feature
  1. Submit a pull request through the GitHub website.

Project details


Release history Release notifications | RSS feed

This version

1.0

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-briteverify-1.0.tar.gz (4.6 kB view details)

Uploaded Source

File details

Details for the file django-briteverify-1.0.tar.gz.

File metadata

File hashes

Hashes for django-briteverify-1.0.tar.gz
Algorithm Hash digest
SHA256 d2b1b977403d210c30a0e8df5aad8b562f786b243bc96f836e4d772e5e03cb27
MD5 1e2c8f863384d06f3dd202c3bb4453d8
BLAKE2b-256 abb02faf001450ff0fd1185293b97d1d9def8ee7296eac476df9537278051417

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page