1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
|
"""Auto-generated file, do not edit by hand."""
# Copyright (C) 2010-2022 The Libphonenumber Authors
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
from phonenumbers.phonemetadata import PhoneMetadata
_AVAILABLE_REGION_CODES = ['AD','AE','AM','AO','AR','AU','BB','BR','BS','BY','CA','CC','CN','CO','CX','DE','FR','GB','GG','IT','JP','KR','MX','NZ','PL','RE','RU','SE','SG','TA','US','UZ','YT']
_AVAILABLE_NONGEO_COUNTRY_CODES = [800, 882, 979]
def _load_region(code):
__import__("region_%s" % code, globals(), locals(),
fromlist=["PHONE_METADATA_%s" % code], level=1)
for _region_code in _AVAILABLE_REGION_CODES:
PhoneMetadata.register_region_loader(_region_code, _load_region)
for _country_code in _AVAILABLE_NONGEO_COUNTRY_CODES:
PhoneMetadata.register_nongeo_region_loader(_country_code, _load_region)
# A mapping from a country code to the region codes which
# denote the country/region represented by that country code.
# In the case of multiple countries sharing a calling code,
# such as the NANPA countries, the one indicated with
# "main_country_for_code" in the metadata should be first.
_COUNTRY_CODE_TO_REGION_CODE = {
1: ("US", "BB", "BS", "CA",),
7: ("RU",),
33: ("FR",),
39: ("IT",),
44: ("GB", "GG",),
46: ("SE",),
48: ("PL",),
49: ("DE",),
52: ("MX",),
54: ("AR",),
55: ("BR",),
57: ("CO",),
61: ("AU", "CC", "CX",),
64: ("NZ",),
65: ("SG",),
81: ("JP",),
82: ("KR",),
86: ("CN",),
244: ("AO",),
262: ("RE", "YT",),
290: ("TA",),
374: ("AM",),
375: ("BY",),
376: ("AD",),
800: ("001",),
882: ("001",),
971: ("AE",),
979: ("001",),
998: ("UZ",),
}
|