This repository was archived by the owner on Feb 9, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathdata.py
More file actions
122 lines (105 loc) · 1.88 KB
/
data.py
File metadata and controls
122 lines (105 loc) · 1.88 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
import random, string
mails = (
"mail.ru",
"inbox.ru",
"list.ru",
"bk.ru",
"ya.ru",
"yandex.com",
"yandex.ua",
"yandex.ru",
"gmail.com",
"outlook.com",
"mail.yahoo.com",
"mail.rambler.ru",
)
names = [
"Showy",
"Andrey",
"Sasha",
"Masha",
"Petya",
"Vasya",
"Sonya",
"Evgeniy",
"Hykok",
"What",
"Youn",
"Iewa",
"Rooti" "Good",
"Jask",
"Luka",
"Artem",
"Maga" "Fifi",
"Fufu",
"Lolik",
"Tolik",
"Petz",
"Hsdf",
"Pope",
"None",
"Noud",
"Urukbek",
"James",
"Jony",
"Jacob",
"Cristi",
"Benjamin",
"Gregory",
"Caesar",
"Tony",
"Ara",
"Harry",
"Garry",
"Larry",
"Nixon",
"Kanny",
]
ru_name = [
"Степа",
"Ксюша",
"Петр",
"Иван",
"Степан",
"Магомед",
"Мага",
"Люба",
"Маша",
"Паша",
"Ваня",
"Саша",
"Женя",
"Евгения",
"София",
"Арсений",
"Василий",
"Максим",
"Грегорий",
"Нурлан",
"Артем",
"Анастасия",
"Женя",
"Катя",
"Карина",
"Аня",
]
agent = open("user_agents.txt").read().split("\n")
def name():
return random.choice(names)
def username():
data_user = ""
letters = "wertyuiopbvcsdfghjklkjewfvgbnxcfghuiasdfgh"
for new_user in letters[:8]:
data_user += data_user.join(random.choice(list(letters)))
return name() + data_user
def x(int_range=4):
numbers = []
for _ in range(int_range):
numbers.append(str(random.randint(1, 9)))
return "".join(numbers)
def email():
return name() + x() + "@" + random.choice(mails)
def password():
return name() + x(int_range=9)
def user_agent():
return random.choice(agent)