emailtools
v0.0.5
이메일 제안 및 검증을위한 파이썬 라이브러리.
좋아하는 터미널에 입력하여 PIP로 PYPI에서 설치하십시오.
이것은 persian-names 설치합니다 (임의 이름을 생성).
pip install emailtools
emailtools 사용하는 예제 테스트 사례가 어떻게 보일지 살펴 보겠습니다.
참고 : 첫 번째 인수를 위해 이메일 제공 업체 또는 해당 도메인의 이름을 사용할 수 있습니다.
from emailtools import generate
# generate('EmailProvider', 'FirstName', 'LastName', BirthYear)
generate () # Generates a random email
# Example: [email protected]
generate ( 'gmail' ) # Generates a random Gmail
# Example: [email protected]
generate ( 'gmail.com' , 'Arash' , 'Amiri' )
# Example: [email protected]
generate ( 'Outlook' , 'Bita' , 'Alipour' , 1995 )
# Example: [email protected] from emailtools import generate
for i in range ( 10 ):
print ( generate ( 'Gmail' , 'Saman' , 'Rezaei' , 1980 ))
# [email protected]
# [email protected]
# [email protected]
# [email protected]
# [email protected]
# [email protected]
# [email protected]
# [email protected]
# [email protected]
# [email protected] from emailtools import isValid
isValid ( '[email protected]' ) # True
isValid ( 'Fariborz_Jalali20.gmail.com' ) # False
isValid ( 'Mohammadrezaei-Arash7@gmail' ) # False emailtools MIT 라이센스에 따라 제공됩니다.