An international phone number field for django models.
Project description
A Django library which interfaces with python-phonenumbers to validate, pretty print and convert phone numbers. python-phonenumbers is a port of Google’s libphonenumber library, which powers Android’s phone number handling.
Included are:
PhoneNumber, a pythonic wrapper around python-phonenumbers’ PhoneNumber class
PhoneNumberField, a model field
PhoneNumberField, a form field
PhoneNumberPrefixWidget, a form widget for selecting a region code and entering a national number
PhoneNumberInternationalFallbackWidget, a form widget that uses national numbers unless an international number is entered
- Note: This package will by default install phonenumberslite if no
phonenumbers package has been installed already.
Installation
pip install django-phonenumber-field
Basic usage
Use it like any regular model field:
from phonenumber_field.modelfields import PhoneNumberField class MyModel(models.Model): name = models.CharField(max_length=255) phone_number = PhoneNumberField() fax_number = PhoneNumberField(blank=True)
Internally, PhoneNumberField is based upon CharField and by default represents the number as a string of an international phonenumber in the database (e.g '+41524204242').
Representation can be set by PHONENUMBER_DB_FORMAT variable in django settings module. This variable must be one of 'E164', 'INTERNATIONAL', 'NATIONAL' or 'RFC3966'. Recommended is one of the globally meaningful formats 'E164', 'INTERNATIONAL' or 'RFC3966'. 'NATIONAL' format require to set up PHONENUMBER_DEFAULT_REGION variable.
As with CharField’s, it is discouraged to use null=True.
The object returned is a PhoneNumber instance, not a string. If strings are used to initialize it, e.g. via MyModel(phone_number='+41524204242') or form handling, it has to be a phone number with country code.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file django-phonenumber-field-1.1.0.tar.gz
.
File metadata
- Download URL: django-phonenumber-field-1.1.0.tar.gz
- Upload date:
- Size: 12.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1ebca1eb2dad258013b1158cfdf751bcc97ac6dd5a81a2c4c97018948f9635bd |
|
MD5 | 96bfe51139707a6e417398caf588a2d3 |
|
BLAKE2b-256 | 8aa908f3ff1c0dcc44daced2f062c3b6617c4a07c8aec2317b7efba5750a7875 |
File details
Details for the file django_phonenumber_field-1.1.0-py2.py3-none-any.whl
.
File metadata
- Download URL: django_phonenumber_field-1.1.0-py2.py3-none-any.whl
- Upload date:
- Size: 27.4 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bcb667fd8da2240cbe87d371a3a4d0f00c3e620c0587932bd494acf7bbe98d66 |
|
MD5 | 504c5319448adaecd4a8bc08b1a3e58f |
|
BLAKE2b-256 | 01ab216ba407a4fc8d049b9b5980e915e2bb4a72a437ebf227ef0b0384f8beff |