1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-23 19:44:20 +00:00
royalnet/chatasthebot.py
2019-02-23 14:06:46 +01:00

14 lines
381 B
Python

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)