-
Notifications
You must be signed in to change notification settings - Fork 0
/
tele_file_sender.py
62 lines (47 loc) · 1.68 KB
/
tele_file_sender.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
import configparser
import sys
import os, random
import webbrowser
import codecs
from os import listdir
from os.path import isfile, join
from telethon.sync import TelegramClient
from telethon import connection
# классы для работы с каналами
from telethon.tl.functions.channels import GetParticipantsRequest
from telethon.tl.types import ChannelParticipantsSearch
# класс для работы с сообщениями
from telethon.tl.functions.messages import GetHistoryRequest
# Директория c html файлами для отправки
basedir = "files"
#Читаем случайный файл
filename = join(basedir, random.choice([x for x in os.listdir(basedir)
if os.path.isfile(os.path.join(basedir, x))]))
#print("Playing file {}...".format(filename))
#Содержимое файла в переменную
try:
filehandle = codecs.open(filename, "r", "utf-8") #open(filename, "r")
except:
print("Could not open file " + filename)
quit()
text = filehandle.read()
filehandle.close()
#print (text)
# Считываем учетные данные
config = configparser.ConfigParser()
config.read("config.ini")
# Присваиваем значения внутренним переменным
api_id = config['Telegram']['api_id']
api_hash = config['Telegram']['api_hash']
username = config['Telegram']['username']
#proxy = (proxy_server, proxy_port, proxy_key)
client = TelegramClient(username, api_id, api_hash)
client.start()
async def main():
url = sys.argv[1]
channel = await client.get_entity(url)
#print(date_of_post)
client.parse_mode = "html"
await client.send_message(channel, text)
with client:
client.loop.run_until_complete(main())