1. BotFather에서 봇을 생성하면, token을 알 수 있다. 2. Get My ID를 찾아서 등록하면, chat ID를 알 수 있다. - 복잡하게(?) 코드로 알아볼 필요가 없다. 3. Telegram : "https://api.telegram.org/bot{token}/sendMessage?chat_id={chat_id}&text={msg}" 요청 4. Telegram에서 메시지 확인 import requests # 1. 텔레그램 봇(BotFather)에서 token 획득 token = "6447515***:AAHGhDWQtII9***Ygw4-MR2qM***MDOw8**" # 2. 텔레그램 봇(Get My ID)에서 ChatID 획득 chat_id = "*79***77*" # 3. 메시지 전송..