mz_msisdn
1.0.0
التحقق من صحة Mozambican 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']."]