File tree Expand file tree Collapse file tree 1 file changed +1
-3
lines changed Expand file tree Collapse file tree 1 file changed +1
-3
lines changed Original file line number Diff line number Diff line change 36
36
cities_name = load_txt_file (cities_name_txt )
37
37
street_names = load_txt_file (street_names_txt )
38
38
job_titles = load_txt_file (job_titles_txt )
39
- email_domains = load_txt_file (email_domain_txt )
40
39
41
40
42
41
class RandomProfile :
@@ -81,7 +80,6 @@ def full_profile(self, num=None):
81
80
phone = f'+1-{ random .randint (300 , 500 )} -{ random .randint (800 , 999 )} -{ random .randint (1000 ,9999 )} '
82
81
job_title = random .choice (job_titles )
83
82
ip_address = ipv4_gen ()
84
- email_domain = random .choice (email_domains )
85
83
86
84
dob , age = generate_dob_age ()
87
85
height , weight = generate_random_height_weight ()
@@ -93,7 +91,7 @@ def full_profile(self, num=None):
93
91
zip_code = random .randint (10000 , 99999 )
94
92
95
93
address = f'{ street_num } { street } St. { city } { state } { zip_code } '
96
- email = first .lower () + last .lower () + '@' + email_domain
94
+ email = first .lower () + last .lower () + '@example.com'
97
95
98
96
profile_dict = {}
99
97
profile_dict ['id' ] = unique_id
You can’t perform that action at this time.
0 commit comments