mirror of
https://github.com/libre-tube/LibreTube.git
synced 2024-12-14 14:20:30 +05:30
11 lines
437 B
Python
11 lines
437 B
Python
import telegram
|
|
from tgconfig import TG_TOKEN
|
|
|
|
TG_CHAT_ID = "-1001537505605"
|
|
bot = telegram.Bot(TG_TOKEN)
|
|
|
|
bot.send_photo(TG_CHAT_ID, open('space.png', 'rb'))
|
|
bot.send_document(TG_CHAT_ID, open('app-arm64-v8a-debug.apk', 'rb'))
|
|
bot.send_document(TG_CHAT_ID, open('app-armeabi-v7a-debug.apk', 'rb'))
|
|
bot.send_document(TG_CHAT_ID, open('app-x86_64-debug.apk', 'rb'))
|
|
bot.send_document(TG_CHAT_ID, open('app-x86-debug.apk', 'rb')) |