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

15 lines
381 B
Python
Raw Permalink Normal View History

2019-02-11 11:48:56 +00:00
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)