-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEmail_collector.py
More file actions
68 lines (52 loc) · 1.1 KB
/
Email_collector.py
File metadata and controls
68 lines (52 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
import re
str='''
Random Lists
Phone Numbers
Passwords
URLs
Fake Names
Credit Cards
SEARCH
MENU
Random Email Addresses:
RERUNOPTIONS
esbeck@sbcglobal.net
thaljef@msn.com
fbriere@comcast.net
manuals@aol.com
ryanshaw@me.com
nasarius@live.com
miturria@me.com
animats@att.net
keiji@att.net
gerlo@sbcglobal.net
mrsam@msn.com
webdragon@me.com
<dsfgnfvdnf@ojndfsodf.com>
RERUN
OPTIONS
SHARE
Edit Settings
Quantity
12
RERUN
Notice: Since these are randomly generated, some of this email address may be unintentionally real.
Want a fake name or address too?
Home
FAQ
Privacy Policy
Contact
Randomize your custom list
Sitemap
This site is offered as is to those who visit it. We make no guarantees regarding its services. Just enjoy yourself.
'''
patt=re.findall(r'\w+@\S+\w',str) #findall function will find email in some paragrap. very important function
for i in range(0,len(patt)):
print(patt[i])
# email=patt.finditer(str)
# i=0
# for emails in email:
# e=emails.start()
# d =emails.end()
# i+=1
# print(f"email {i}:",str[e:d])