mz_msisdn
1.0.0
驗證莫桑比克MSISDNS
pip install mz-msisdn
默認情況下,設置了驗證功能以驗證國際格式的數字。
from mz_msisdn import mz_validator
# If the number is valid an empty array will be returned
mz_validator ( "258844245708" ) # []
# If the number is invalid an error bag containing all errors will be returned
errors = mz_validator ( "25889424570" )
print ( errors )
# ['The phone number must be 12 characters long. currently with 11.',
# "Invalid network code. Valid codes: ['82', '83', '84', '85', '86', '87']."]如果您想驗證數字,考慮到您只會收到莫桑比克的數字,則可以啟用國家編隊,如下所示:
errors = mz_validator ( "89424570" , nr_format = "national" )
# ['The phone number must be 9 characters long. currently with 8.',
# "Invalid network code. Valid codes: ['82', '83', '84', '85', '86', '87']."]