mirror of
https://gitlab.com/oloturia/fumcaso.git
synced 2024-11-01 01:38:16 +01:00
34 lines
1,008 B
Python
Executable file
34 lines
1,008 B
Python
Executable file
#!/usr/bin/python3
|
|
from telegram.ext import Updater, CommandHandler
|
|
from randstrip import createStrip,readConfig
|
|
import requests
|
|
import os
|
|
|
|
fileDir = os.path.dirname(os.path.abspath(__file__))
|
|
fileDir = fileDir +"/"
|
|
|
|
def newStrip(bot, update, args):
|
|
config = readConfig(platform="telegram",profile=args)
|
|
status = createStrip(config)
|
|
if status == 0:
|
|
try:
|
|
strip_file=open(config["saveLocation"]+config["filename"],"rb")
|
|
bot.send_photo(chat_id=update.message.chat_id,photo=strip_file)
|
|
strip_file.close()
|
|
os.remove(config["saveLocation"]+config["filename"])
|
|
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:
|
|
content = token_file.readlines()
|
|
token = content[0].strip()
|
|
updater = Updater(token)
|
|
dp = updater.dispatcher
|
|
dp.add_handler(CommandHandler('strip',newStrip, pass_args=True))
|
|
updater.start_polling()
|
|
updater.idle()
|