Skip to main content

Country-specific validation helpers, ported from Django Localflavor

Project description

https://travis-ci.com/anka-sirota/localflavor.svg?branch=master

localflavor

This package is a derivative of django-localflavor and a work in progress. This package does not depend on Django, and currently only contains postal codes validators, lists of country states and provinces and calling (dial in) codes.

Installation

pip install localflavor

Example usage

Postal code validation

>>> from localflavor.generic.validators import validate_country_postcode
>>> validate_country_postcode('1000AA', 'NL')
'1000 AA'
>>> validate_country_postcode('0888', 'US')
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "../localflavor/generic/validators.py", line 453, in validate_country_postcode
    return validator.clean(value)
  File "../localflavor/base.py", line 71, in clean
    value = super(RegexValidator, self).clean(value)
  File "../localflavor/base.py", line 48, in clean
    raise ValidationError(self.error_messages['invalid'])
localflavor.exceptions.ValidationError: Enter a valid ZIP code in the format XXXXX or XXXXX-XXXX.

Calling codes

>>> from localflavor.generic.countries.calling_codes import CALLING_CODES
>>> CALLING_CODES.get('US')
'+1'
>>> CALLING_CODES.get('RU')
'+7'
>>> CALLING_CODES.get('NL')
'+31'

Project details


Download files

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

Source Distribution

localflavor-1.8.tar.gz (80.1 kB view hashes)

Uploaded Source

Built Distribution

localflavor-1.8-py3-none-any.whl (128.2 kB view hashes)

Uploaded Python 3

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