-
Notifications
You must be signed in to change notification settings - Fork 4
/
main.py
144 lines (113 loc) · 5.05 KB
/
main.py
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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
from telethon.sync import TelegramClient
from telethon.tl.functions.messages import GetDialogsRequest
from telethon.tl.types import InputPeerEmpty
from telethon.errors.rpcerrorlist import PeerFloodError, UserPrivacyRestrictedError
from defunc import *
import time
import random
import os
if __name__ == "__main__":
while True:
options = getoptions()
if not options or options[0] == "NONEID\n" or options[1] == "NONEHASH\n":
print("Добавьте API_ID и API_HASH")
time.sleep(2)
config()
continue
api_id = int(options[0].replace('\n', ''))
api_hash = str(options[1].replace('\n', ''))
if options[2] == 'True\n':
user_id = True
else:
user_id = False
if options[3] == 'True\n':
user_name = True
else:
user_name = False
os.system('cls||clear')
selection = str(input("1 - Настройки\n"
"2 - Парсинг\n"
"3 - Инвайтинг\n"
"e - Выход\n"
"Ввод: "))
if selection == '1':
config()
elif selection == '2':
chats = []
last_date = None
size_chats = 200
groups = []
print("Выберите юзер-бота для парсинга.\n"
"(Аккаунт который состоит в группах, которые нужно спарсить)\n")
sessions = []
for file in os.listdir('.'):
if file.endswith('.session'):
sessions.append(file)
for i in range(len(sessions)):
print(f"[{i}] -", sessions[i], '\n')
i = int(input("Ввод: "))
client = TelegramClient(sessions[i].replace('\n', ''), api_id, api_hash).start(sessions[i].replace('\n', ''))
result = client(GetDialogsRequest(
offset_date=last_date,
offset_id=0,
offset_peer=InputPeerEmpty(),
limit=size_chats,
hash=0
))
chats.extend(result.chats)
for chat in chats:
try:
if chat.megagroup is True:
groups.append(chat)
except:
continue
i = 0
print('Очистка базы юзеров: clear')
print('-----------------------------')
for g in groups:
print(str(i) + ' - ' + g.title)
i+=1
print(str(i + 1) + ' - ' + 'Спарсить всё')
g_index = str(input())
if g_index == 'clear':
f = open('usernames.txt', 'w')
f.close()
f = open('userids.txt', 'w')
f.close
elif int(g_index) < i + 1:
target_group = groups[int(g_index)]
parsing(client, target_group, user_id, user_name)
print('Спаршено.')
elif int(g_index) == i + 1:
for g_index in groups:
parsing(client, g_index, user_id, user_name)
print('Спаршено.')
elif selection == '3':
with open('usernames.txt', 'r') as f:
users = list(f)
print("Выберите юзер-бота для инвайтинга.\n"
"(Аккаунт который состоит в группе, в которую производится инвайт)")
sessions = []
for file in os.listdir('.'):
if file.endswith('.session'):
sessions.append(file)
for i in range(len(sessions)):
print(f"{i} -", sessions[i])
i = int(input("Ввод: "))
client = TelegramClient(sessions[i].replace('\n', ''), api_id, api_hash)
channelname = input('Введите имя канала для инвайта (без "@")')
for limit in range(20):
try:
inviting(client, channelname, users[limit].replace('\n', ''))
print(users[limit].replace('\n', ''))
time.sleep(random.randrange(15, 40))
except UserPrivacyRestrictedError:
print('Пользователь ' + users[limit].replace('\n', '') + ' запретил его инвайтить. Пропускаем :(')
except PeerFloodError:
print('Телеграмм заспамлен.')
break
except Exception as error:
print(error)
break
elif selection == 'e':
break