First look
This commit is contained in:
10
useful/check.py
Normal file
10
useful/check.py
Normal file
@@ -0,0 +1,10 @@
|
||||
import re
|
||||
|
||||
def check_email(email):
|
||||
# Click on Edit and place your email ID to validate
|
||||
#email = "my.ownsite@our-earth.de"
|
||||
valid = re.match(r'^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}$', email)
|
||||
if valid:
|
||||
return True
|
||||
else:
|
||||
return False
|
||||
0
useful/hash.py
Normal file
0
useful/hash.py
Normal file
Reference in New Issue
Block a user