First look

This commit is contained in:
florianuhlig
2025-10-02 23:36:57 +02:00
parent 8c8856fc07
commit 4f663eb8a5
8 changed files with 75 additions and 3 deletions

10
useful/check.py Normal file
View 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