International phone number generation
Project description
Phone Gen
International phone number generation
This module was created exclusively for generating test data
Installation
Install using pip with
pip install phone-gen
Example
from phone_gen import PhoneNumber
phone_number = PhoneNumber("GB") # ISO 3166-2
# or
phone_number = PhoneNumber("GBR") # ISO 3166-3
# or
phone_number = PhoneNumber("Great Britain") # Country name
# Get a phone number
number = phone_number.get_number()
print(number) # +442908124840
# Get a country code
country_code = phone_number.get_code()
print(country_code) # 44
# Get a phone number without a country code
number = phone_number.get_number(full=False)
print(number) # 183782623
pytest fixture
import pytest
from phone_gen import PhoneNumber
@pytest.fixture
def phone_number():
def wrap(code):
return PhoneNumber(code).get_number()
yield wrap
def test_one(phone_number):
number = phone_number("DE")
...
Using the CLI
usage: phone-gen [-h] [-v] [-n] country [country ...]
International phone number generation
positional arguments:
country Country code or country name. Example: "GB" or "Great Britain"
optional arguments:
-h, --help show this help message and exit
-v, --version show program's version number and exit
-n, --not-full Get a phone number without a country code
Example
# Get a phone number
$ phone-gen DE
+49791774007056
$ phone-gen DEU
+499968635
$ phone-gen Germany
+49960335800
# Get a phone number without a country code
$ phone-gen DE -n
66999511
$ phone-gen Germany -n
877595
Resources
- Google's libphonenumber
- Modified strgen library
Contributing
Contributions are very welcome.
Changelog
- 1.2.0 Added phone number generation by
country name
andISO 3166-3
- 1.1.1 Updating patterns to libphonenumber v8.12.4
- 1.1.0 Added cli
- 1.0.0 The first stable release
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 Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
Close
Hashes for phone_gen-1.2.0-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 99e02445909a763caa7dcf962f12a6df5e6c677a1084bf6efb679e9ede683234 |
|
MD5 | 61382b1a44bc03a64d2b8effdb5317d6 |
|
BLAKE2b-256 | 847350eb55abd319b84c41561e8cb18f34e588afa63da4e33946795f48e63803 |