phonenumberslite


Namephonenumberslite JSON
Version 8.13.34 PyPI version JSON
download
home_pagehttps://github.com/daviddrysdale/python-phonenumbers
SummaryPython version of Google's common library for parsing, formatting, storing and validating international phone numbers.
upload_time2024-04-05 06:23:44
maintainerNone
docs_urlNone
authorDavid Drysdale
requires_pythonNone
licenseApache License 2.0
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            phonenumbers Python Library
===========================

[![Coverage Status](https://coveralls.io/repos/daviddrysdale/python-phonenumbers/badge.svg?branch=dev&service=github)](https://coveralls.io/github/daviddrysdale/python-phonenumbers?branch=dev)

This is a Python port of [Google's libphonenumber library](https://github.com/google/libphonenumber)
It supports Python 2.5-2.7 and Python 3.x (in the same codebase, with no
[2to3](http://docs.python.org/2/library/2to3.html) conversion needed).

Original Java code is Copyright (C) 2009-2015 The Libphonenumber Authors.

Release [HISTORY](https://github.com/daviddrysdale/python-phonenumbers/blob/dev/python/HISTORY.md),
derived from [upstream release notes](https://github.com/google/libphonenumber/blob/master/release_notes.txt).

[Documentation](https://daviddrysdale.github.io/python-phonenumbers/)

Installation
------------

Install using [pip](https://pypi.org/project/phonenumbers/) with:
```
pip install phonenumbers
```

Example Usage
-------------

The main object that the library deals with is a `PhoneNumber` object.  You can create this from a string
representing a phone number using the `parse` function, but you also need to specify the country
that the phone number is being dialled from (unless the number is in E.164 format, which is globally
unique).

```pycon
>>> import phonenumbers
>>> x = phonenumbers.parse("+442083661177", None)
>>> print(x)
Country Code: 44 National Number: 2083661177 Leading Zero: False
>>> type(x)
<class 'phonenumbers.phonenumber.PhoneNumber'>
>>> y = phonenumbers.parse("020 8366 1177", "GB")
>>> print(y)
Country Code: 44 National Number: 2083661177 Leading Zero: False
>>> x == y
True
>>> z = phonenumbers.parse("00 1 650 253 2222", "GB")  # as dialled from GB, not a GB number
>>> print(z)
Country Code: 1 National Number: 6502532222 Leading Zero(s): False
```

The `PhoneNumber` object that `parse` produces typically still needs to be validated, to check whether
it's a *possible* number (e.g. it has the right number of digits) or a *valid* number (e.g. it's
in an assigned exchange).

```pycon
>>> z = phonenumbers.parse("+120012301", None)
>>> print(z)
Country Code: 1 National Number: 20012301 Leading Zero: False
>>> phonenumbers.is_possible_number(z)  # too few digits for USA
False
>>> phonenumbers.is_valid_number(z)
False
>>> z = phonenumbers.parse("+12001230101", None)
>>> print(z)
Country Code: 1 National Number: 2001230101 Leading Zero: False
>>> phonenumbers.is_possible_number(z)
True
>>> phonenumbers.is_valid_number(z)  # NPA 200 not used
False
```

The `parse` function will also fail completely (with a `NumberParseException`) on inputs that cannot
be uniquely parsed, or that  can't possibly be phone numbers.

```pycon
>>> z = phonenumbers.parse("02081234567", None)  # no region, no + => unparseable
Traceback (most recent call last):
  File "phonenumbers/phonenumberutil.py", line 2350, in parse
    "Missing or invalid default region.")
phonenumbers.phonenumberutil.NumberParseException: (0) Missing or invalid default region.
>>> z = phonenumbers.parse("gibberish", None)
Traceback (most recent call last):
  File "phonenumbers/phonenumberutil.py", line 2344, in parse
    "The string supplied did not seem to be a phone number.")
phonenumbers.phonenumberutil.NumberParseException: (1) The string supplied did not seem to be a phone number.
```

Once you've got a phone number, a common task is to format it in a standardized format.  There are a few
formats available (under `PhoneNumberFormat`), and the `format_number` function does the formatting.

```pycon
>>> phonenumbers.format_number(x, phonenumbers.PhoneNumberFormat.NATIONAL)
'020 8366 1177'
>>> phonenumbers.format_number(x, phonenumbers.PhoneNumberFormat.INTERNATIONAL)
'+44 20 8366 1177'
>>> phonenumbers.format_number(x, phonenumbers.PhoneNumberFormat.E164)
'+442083661177'
```

If your application has a UI that allows the user to type in a phone number, it's nice to get the formatting
applied as the user types.   The `AsYouTypeFormatter` object allows this.

```pycon
>>> formatter = phonenumbers.AsYouTypeFormatter("US")
>>> formatter.input_digit("6")
'6'
>>> formatter.input_digit("5")
'65'
>>> formatter.input_digit("0")
'650'
>>> formatter.input_digit("2")
'650 2'
>>> formatter.input_digit("5")
'650 25'
>>> formatter.input_digit("3")
'650 253'
>>> formatter.input_digit("2")
'650-2532'
>>> formatter.input_digit("2")
'(650) 253-22'
>>> formatter.input_digit("2")
'(650) 253-222'
>>> formatter.input_digit("2")
'(650) 253-2222'
```

Sometimes, you've got a larger block of text that may or may not have some phone numbers inside it.  For this,
the `PhoneNumberMatcher` object provides the relevant functionality; you can iterate over it to retrieve a
sequence of `PhoneNumberMatch` objects.  Each of these match objects holds a `PhoneNumber` object together
with information about where the match occurred in the original string.

```pycon
>>> text = "Call me at 510-748-8230 if it's before 9:30, or on 703-4800500 after 10am."
>>> for match in phonenumbers.PhoneNumberMatcher(text, "US"):
...     print(match)
...
PhoneNumberMatch [11,23) 510-748-8230
PhoneNumberMatch [51,62) 703-4800500
>>> for match in phonenumbers.PhoneNumberMatcher(text, "US"):
...     print(phonenumbers.format_number(match.number, phonenumbers.PhoneNumberFormat.E164))
...
+15107488230
+17034800500
```

You might want to get some information about the location that corresponds to a phone number.  The
`geocoder.area_description_for_number` does this, when possible.

```pycon
>>> from phonenumbers import geocoder
>>> ch_number = phonenumbers.parse("0431234567", "CH")
>>> geocoder.description_for_number(ch_number, "de")
'Zürich'
>>> geocoder.description_for_number(ch_number, "en")
'Zurich'
>>> geocoder.description_for_number(ch_number, "fr")
'Zurich'
>>> geocoder.description_for_number(ch_number, "it")
'Zurigo'
```

For mobile numbers in some countries, you can also find out information about which carrier
originally owned a phone number.

```pycon
>>> from phonenumbers import carrier
>>> ro_number = phonenumbers.parse("+40721234567", "RO")
>>> carrier.name_for_number(ro_number, "en")
'Vodafone'
```

You might also be able to retrieve a list of time zone names that the number potentially
belongs to.

```pycon
>>> from phonenumbers import timezone
>>> gb_number = phonenumbers.parse("+447986123456", "GB")
>>> timezone.time_zones_for_number(gb_number)
('Atlantic/Reykjavik', 'Europe/London')
```

For more information about the other functionality available from the library, look in the unit tests or in the original
[libphonenumber project](https://github.com/google/libphonenumber).

Memory Usage
------------

The library includes a lot of metadata, potentially giving a significant memory overhead.  There are two mechanisms
for dealing with this.

* The normal metadata (just over 2 MiB of generated Python code) for the core functionality of the library is loaded
  on-demand, on a region-by-region basis (i.e. the metadata for a region is only loaded on the first time it is needed).
* Metadata for extended functionality is held in separate packages, which therefore need to be explicitly
  loaded separately.  This affects:
    * The geocoding metadata (~19 MiB), which is held in `phonenumbers.geocoder` and used by the geocoding functions
      (`geocoder.description_for_number`, `geocoder.description_for_valid_number` or
      `geocoder.country_name_for_number`).
    * The carrier metadata (~1 MiB), which is held in `phonenumbers.carrier` and used by the mapping functions
      (`carrier.name_for_number` or `carrier.name_for_valid_number`).
    * The timezone metadata (~100 KiB), which is held in `phonenumbers.timezone` and used by the timezone functions
      (`time_zones_for_number` or `time_zones_for_geographical_number`).

The `phonenumberslite` version of the library does not include the geocoder, carrier and timezone packages,
which can be useful if you have problems installing the main `phonenumbers` library due to space/memory limitations.

If you need to ensure that the metadata memory use is accounted for at start of day (i.e. that a subsequent on-demand
load of metadata will not cause a pause or memory exhaustion):

* Force-load the normal metadata by calling `phonenumbers.PhoneMetadata.load_all()`.
* Force-load the extended metadata by `import`ing the appropriate packages (`phonenumbers.geocoder`,
  `phonenumbers.carrier`, `phonenumbers.timezone`).

The `phonenumberslite` version of the package does not include the geocoding, carrier and timezone metadata,
which can be useful if you have problems installing the main `phonenumbers` package due to space/memory limitations.

Static Typing
-------------

The library includes a set of type [stub files](https://www.python.org/dev/peps/pep-0484/#stub-files) to support static
type checking by library users. These stub files signal the types that should be used, and may also be of use in IDEs 
which have integrated type checking functionalities.

These files are written for Python 3, and as such type checking the library with these stubs on Python 2.5-2.7 is
unsupported.

Project Layout
--------------

* The `python/` directory holds the Python code.
* The `resources/` directory is a copy of the `resources/`
  directory from
  [libphonenumber](https://github.com/google/libphonenumber/tree/master/resources).
  This is not needed to run the Python code, but is needed when upstream
  changes to the master metadata need to be incorporated.
* The `tools/` directory holds the tools that are used to process upstream
  changes to the master metadata.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/daviddrysdale/python-phonenumbers",
    "name": "phonenumberslite",
    "maintainer": null,
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": null,
    "keywords": null,
    "author": "David Drysdale",
    "author_email": "dmd@lurklurk.org",
    "download_url": "https://files.pythonhosted.org/packages/cb/64/56b4f465aadeb3b8086155f16b4173ca0d297e7f9db49e29edde5c7aa0ca/phonenumberslite-8.13.34.tar.gz",
    "platform": "Posix; MacOS X; Windows",
    "description": "phonenumbers Python Library\n===========================\n\n[![Coverage Status](https://coveralls.io/repos/daviddrysdale/python-phonenumbers/badge.svg?branch=dev&service=github)](https://coveralls.io/github/daviddrysdale/python-phonenumbers?branch=dev)\n\nThis is a Python port of [Google's libphonenumber library](https://github.com/google/libphonenumber)\nIt supports Python 2.5-2.7 and Python 3.x (in the same codebase, with no\n[2to3](http://docs.python.org/2/library/2to3.html) conversion needed).\n\nOriginal Java code is Copyright (C) 2009-2015 The Libphonenumber Authors.\n\nRelease [HISTORY](https://github.com/daviddrysdale/python-phonenumbers/blob/dev/python/HISTORY.md),\nderived from [upstream release notes](https://github.com/google/libphonenumber/blob/master/release_notes.txt).\n\n[Documentation](https://daviddrysdale.github.io/python-phonenumbers/)\n\nInstallation\n------------\n\nInstall using [pip](https://pypi.org/project/phonenumbers/) with:\n```\npip install phonenumbers\n```\n\nExample Usage\n-------------\n\nThe main object that the library deals with is a `PhoneNumber` object.  You can create this from a string\nrepresenting a phone number using the `parse` function, but you also need to specify the country\nthat the phone number is being dialled from (unless the number is in E.164 format, which is globally\nunique).\n\n```pycon\n>>> import phonenumbers\n>>> x = phonenumbers.parse(\"+442083661177\", None)\n>>> print(x)\nCountry Code: 44 National Number: 2083661177 Leading Zero: False\n>>> type(x)\n<class 'phonenumbers.phonenumber.PhoneNumber'>\n>>> y = phonenumbers.parse(\"020 8366 1177\", \"GB\")\n>>> print(y)\nCountry Code: 44 National Number: 2083661177 Leading Zero: False\n>>> x == y\nTrue\n>>> z = phonenumbers.parse(\"00 1 650 253 2222\", \"GB\")  # as dialled from GB, not a GB number\n>>> print(z)\nCountry Code: 1 National Number: 6502532222 Leading Zero(s): False\n```\n\nThe `PhoneNumber` object that `parse` produces typically still needs to be validated, to check whether\nit's a *possible* number (e.g. it has the right number of digits) or a *valid* number (e.g. it's\nin an assigned exchange).\n\n```pycon\n>>> z = phonenumbers.parse(\"+120012301\", None)\n>>> print(z)\nCountry Code: 1 National Number: 20012301 Leading Zero: False\n>>> phonenumbers.is_possible_number(z)  # too few digits for USA\nFalse\n>>> phonenumbers.is_valid_number(z)\nFalse\n>>> z = phonenumbers.parse(\"+12001230101\", None)\n>>> print(z)\nCountry Code: 1 National Number: 2001230101 Leading Zero: False\n>>> phonenumbers.is_possible_number(z)\nTrue\n>>> phonenumbers.is_valid_number(z)  # NPA 200 not used\nFalse\n```\n\nThe `parse` function will also fail completely (with a `NumberParseException`) on inputs that cannot\nbe uniquely parsed, or that  can't possibly be phone numbers.\n\n```pycon\n>>> z = phonenumbers.parse(\"02081234567\", None)  # no region, no + => unparseable\nTraceback (most recent call last):\n  File \"phonenumbers/phonenumberutil.py\", line 2350, in parse\n    \"Missing or invalid default region.\")\nphonenumbers.phonenumberutil.NumberParseException: (0) Missing or invalid default region.\n>>> z = phonenumbers.parse(\"gibberish\", None)\nTraceback (most recent call last):\n  File \"phonenumbers/phonenumberutil.py\", line 2344, in parse\n    \"The string supplied did not seem to be a phone number.\")\nphonenumbers.phonenumberutil.NumberParseException: (1) The string supplied did not seem to be a phone number.\n```\n\nOnce you've got a phone number, a common task is to format it in a standardized format.  There are a few\nformats available (under `PhoneNumberFormat`), and the `format_number` function does the formatting.\n\n```pycon\n>>> phonenumbers.format_number(x, phonenumbers.PhoneNumberFormat.NATIONAL)\n'020 8366 1177'\n>>> phonenumbers.format_number(x, phonenumbers.PhoneNumberFormat.INTERNATIONAL)\n'+44 20 8366 1177'\n>>> phonenumbers.format_number(x, phonenumbers.PhoneNumberFormat.E164)\n'+442083661177'\n```\n\nIf your application has a UI that allows the user to type in a phone number, it's nice to get the formatting\napplied as the user types.   The `AsYouTypeFormatter` object allows this.\n\n```pycon\n>>> formatter = phonenumbers.AsYouTypeFormatter(\"US\")\n>>> formatter.input_digit(\"6\")\n'6'\n>>> formatter.input_digit(\"5\")\n'65'\n>>> formatter.input_digit(\"0\")\n'650'\n>>> formatter.input_digit(\"2\")\n'650 2'\n>>> formatter.input_digit(\"5\")\n'650 25'\n>>> formatter.input_digit(\"3\")\n'650 253'\n>>> formatter.input_digit(\"2\")\n'650-2532'\n>>> formatter.input_digit(\"2\")\n'(650) 253-22'\n>>> formatter.input_digit(\"2\")\n'(650) 253-222'\n>>> formatter.input_digit(\"2\")\n'(650) 253-2222'\n```\n\nSometimes, you've got a larger block of text that may or may not have some phone numbers inside it.  For this,\nthe `PhoneNumberMatcher` object provides the relevant functionality; you can iterate over it to retrieve a\nsequence of `PhoneNumberMatch` objects.  Each of these match objects holds a `PhoneNumber` object together\nwith information about where the match occurred in the original string.\n\n```pycon\n>>> text = \"Call me at 510-748-8230 if it's before 9:30, or on 703-4800500 after 10am.\"\n>>> for match in phonenumbers.PhoneNumberMatcher(text, \"US\"):\n...     print(match)\n...\nPhoneNumberMatch [11,23) 510-748-8230\nPhoneNumberMatch [51,62) 703-4800500\n>>> for match in phonenumbers.PhoneNumberMatcher(text, \"US\"):\n...     print(phonenumbers.format_number(match.number, phonenumbers.PhoneNumberFormat.E164))\n...\n+15107488230\n+17034800500\n```\n\nYou might want to get some information about the location that corresponds to a phone number.  The\n`geocoder.area_description_for_number` does this, when possible.\n\n```pycon\n>>> from phonenumbers import geocoder\n>>> ch_number = phonenumbers.parse(\"0431234567\", \"CH\")\n>>> geocoder.description_for_number(ch_number, \"de\")\n'Z\u00fcrich'\n>>> geocoder.description_for_number(ch_number, \"en\")\n'Zurich'\n>>> geocoder.description_for_number(ch_number, \"fr\")\n'Zurich'\n>>> geocoder.description_for_number(ch_number, \"it\")\n'Zurigo'\n```\n\nFor mobile numbers in some countries, you can also find out information about which carrier\noriginally owned a phone number.\n\n```pycon\n>>> from phonenumbers import carrier\n>>> ro_number = phonenumbers.parse(\"+40721234567\", \"RO\")\n>>> carrier.name_for_number(ro_number, \"en\")\n'Vodafone'\n```\n\nYou might also be able to retrieve a list of time zone names that the number potentially\nbelongs to.\n\n```pycon\n>>> from phonenumbers import timezone\n>>> gb_number = phonenumbers.parse(\"+447986123456\", \"GB\")\n>>> timezone.time_zones_for_number(gb_number)\n('Atlantic/Reykjavik', 'Europe/London')\n```\n\nFor more information about the other functionality available from the library, look in the unit tests or in the original\n[libphonenumber project](https://github.com/google/libphonenumber).\n\nMemory Usage\n------------\n\nThe library includes a lot of metadata, potentially giving a significant memory overhead.  There are two mechanisms\nfor dealing with this.\n\n* The normal metadata (just over 2 MiB of generated Python code) for the core functionality of the library is loaded\n  on-demand, on a region-by-region basis (i.e. the metadata for a region is only loaded on the first time it is needed).\n* Metadata for extended functionality is held in separate packages, which therefore need to be explicitly\n  loaded separately.  This affects:\n    * The geocoding metadata (~19 MiB), which is held in `phonenumbers.geocoder` and used by the geocoding functions\n      (`geocoder.description_for_number`, `geocoder.description_for_valid_number` or\n      `geocoder.country_name_for_number`).\n    * The carrier metadata (~1 MiB), which is held in `phonenumbers.carrier` and used by the mapping functions\n      (`carrier.name_for_number` or `carrier.name_for_valid_number`).\n    * The timezone metadata (~100 KiB), which is held in `phonenumbers.timezone` and used by the timezone functions\n      (`time_zones_for_number` or `time_zones_for_geographical_number`).\n\nThe `phonenumberslite` version of the library does not include the geocoder, carrier and timezone packages,\nwhich can be useful if you have problems installing the main `phonenumbers` library due to space/memory limitations.\n\nIf you need to ensure that the metadata memory use is accounted for at start of day (i.e. that a subsequent on-demand\nload of metadata will not cause a pause or memory exhaustion):\n\n* Force-load the normal metadata by calling `phonenumbers.PhoneMetadata.load_all()`.\n* Force-load the extended metadata by `import`ing the appropriate packages (`phonenumbers.geocoder`,\n  `phonenumbers.carrier`, `phonenumbers.timezone`).\n\nThe `phonenumberslite` version of the package does not include the geocoding, carrier and timezone metadata,\nwhich can be useful if you have problems installing the main `phonenumbers` package due to space/memory limitations.\n\nStatic Typing\n-------------\n\nThe library includes a set of type [stub files](https://www.python.org/dev/peps/pep-0484/#stub-files) to support static\ntype checking by library users. These stub files signal the types that should be used, and may also be of use in IDEs \nwhich have integrated type checking functionalities.\n\nThese files are written for Python 3, and as such type checking the library with these stubs on Python 2.5-2.7 is\nunsupported.\n\nProject Layout\n--------------\n\n* The `python/` directory holds the Python code.\n* The `resources/` directory is a copy of the `resources/`\n  directory from\n  [libphonenumber](https://github.com/google/libphonenumber/tree/master/resources).\n  This is not needed to run the Python code, but is needed when upstream\n  changes to the master metadata need to be incorporated.\n* The `tools/` directory holds the tools that are used to process upstream\n  changes to the master metadata.\n",
    "bugtrack_url": null,
    "license": "Apache License 2.0",
    "summary": "Python version of Google's common library for parsing, formatting, storing and validating international phone numbers.",
    "version": "8.13.34",
    "project_urls": {
        "Homepage": "https://github.com/daviddrysdale/python-phonenumbers"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "184591628620f59c6ddcdbcd3d35e39ba87ed5186177696e6aea715a47137e61",
                "md5": "e71a976759d70a867ac9d1326eb093cc",
                "sha256": "3d43d824c080b24e1f9b8b828695b2372800aeafbd17327e88e55ecb64e663c9"
            },
            "downloads": -1,
            "filename": "phonenumberslite-8.13.34-py2.py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "e71a976759d70a867ac9d1326eb093cc",
            "packagetype": "bdist_wheel",
            "python_version": "py2.py3",
            "requires_python": null,
            "size": 470789,
            "upload_time": "2024-04-05T06:23:40",
            "upload_time_iso_8601": "2024-04-05T06:23:40.863474Z",
            "url": "https://files.pythonhosted.org/packages/18/45/91628620f59c6ddcdbcd3d35e39ba87ed5186177696e6aea715a47137e61/phonenumberslite-8.13.34-py2.py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cb6456b4f465aadeb3b8086155f16b4173ca0d297e7f9db49e29edde5c7aa0ca",
                "md5": "53ce9a4ab3bb46baf2cbda00a7670b6f",
                "sha256": "396ae65da710b0d2309f054a937a70e28fe7ddf15b097eb6371676633c512a0e"
            },
            "downloads": -1,
            "filename": "phonenumberslite-8.13.34.tar.gz",
            "has_sig": false,
            "md5_digest": "53ce9a4ab3bb46baf2cbda00a7670b6f",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 2296812,
            "upload_time": "2024-04-05T06:23:44",
            "upload_time_iso_8601": "2024-04-05T06:23:44.664596Z",
            "url": "https://files.pythonhosted.org/packages/cb/64/56b4f465aadeb3b8086155f16b4173ca0d297e7f9db49e29edde5c7aa0ca/phonenumberslite-8.13.34.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-05 06:23:44",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "daviddrysdale",
    "github_project": "python-phonenumbers",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "phonenumberslite"
}
        
Elapsed time: 0.26615s