1
0
Fork 0
mirror of https://gitlab.com/oloturia/fumcaso.git synced 2024-11-01 09:48:17 +01:00
fumcaso/telegram_main.py

32 lines
870 B
Python
Raw Normal View History

2020-12-17 02:06:52 +01:00
#!/usr/bin/python3
2019-09-19 01:59:13 +02:00
from telegram.ext import Updater, CommandHandler
from randstrip import createStrip,readConfig
2019-09-19 01:59:13 +02:00
import requests
import os
fileDir = os.path.dirname(os.path.abspath(__file__))
fileDir = fileDir +"/"
2019-09-19 01:59:13 +02:00
def newStrip(bot, update):
config = readConfig(platform="telegram")
status = createStrip(config)
2019-09-19 01:59:13 +02:00
if status == 0:
try:
bot.send_photo(chat_id=update.message.chat_id,photo=open(config["saveLocation"]+config["filename"],"rb"))
2019-09-19 01:59:13 +02:00
except Exception as err:
print(err)
else:
print("Creation of image failed\n")
print(status)
if __name__ == "__main__":
config = readConfig(platform="telegram")
with open(config["token"]) as token_file:
2019-09-19 01:59:13 +02:00
content = token_file.readlines()
token = content[0].strip()
updater = Updater(token)
dp = updater.dispatcher
dp.add_handler(CommandHandler('strip',newStrip))
updater.start_polling()
updater.idle()