1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-23 19:44:20 +00:00

Add new script

This commit is contained in:
Steffo 2019-02-11 12:48:56 +01:00
parent f062c01ee1
commit b8511344af

14
chatasthebot.py Normal file
View file

@ -0,0 +1,14 @@
import telegram
import configparser
config = configparser.ConfigParser()
config.read("config.ini")
telegram_bot = telegram.Bot(config["Telegram"]["bot_token"])
while True:
message = input()
telegram_bot.send_message(config["Telegram"]["main_group"], message,
parse_mode="HTML",
disable_web_page_preview=True)