CoolFace
Apppublic

segestic/HealthBlock

sourceHugging Faceupdated 3y agoView on Hugging Face
1likes
debugG.py13 linesDownload Raw Back to root
1import re2 3json_data = {'test1@email.com': {'age': 18, 'gender': 'Female', 'hospital': '', 'name': 'tesuser1', 'number': 41414, 'v1': False, 'v1Date': 0,'v2': False, 'v2Date': 0}}4 5# Extract email address from dictionary key6email = next(iter(json_data))7email_address = re.match(r"[^@]+@[^@]+\.[^@]+", email).group(0)8 9#print(email_address)10#print (json_data.keys())11 12print(list(json_data.keys())[0])13