■ post 함수를 사용해 텔레그램에서 메시지를 보내는 방법을 보여준다.
▶ main.py
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 |
import requests class TelegramBot: def __init__(self): self.token = None self.chatID = None def setup(self): print() self.token = input("텔레그램 봇 토큰을 입력해주시기 바랍니다 : ") getMeURL = f"https://api.telegram.org/bot{self.token}/getMe" response = requests.get(getMeURL) if not response.json()["ok"]: raise Exception("유효하지 않은 토큰입니다.") print() print("1. @your_bot_name 봇과 대화를 시작해주시기 바랍니다.") print("2. 봇에게 메시지를 보내주시기 바랍니다.") input("3. 완료되었다면 Enter 키를 눌러주시기 바랍니다.") getUpdatesURL = f"https://api.telegram.org/bot{self.token}/getUpdates" response = requests.get(getUpdatesURL) updateDictionary = response.json() if not updateDictionary["ok"] or not updateDictionary["result"]: raise Exception("업데이트 내역을 찾을 수 없습니다. 봇에게 메시지를 보냈는지 확인해주시기 바랍니다.") self.chatID = updateDictionary["result"][-1]["message"]["chat"]["id"] print(f"\n설정이 완료되었습니다!") def sendMessage(self, text): if not self.token or not self.chatID: raise Exception("먼저 setup()을 실행해주시기 바랍니다.") sendMessageURL = f"https://api.telegram.org/bot{self.token}/sendMessage" response = requests.post(sendMessageURL, json = {"chat_id" : self.chatID, "text" : text}) if response.json()["ok"]: print("메시지를 성공적으로 보냈습니다!") else: print("메시지 전송에 실패했습니다.") if __name__ == "__main__": telegramBot = TelegramBot() telegramBot.setup() while True: message = input("\n보낼 메시지를 입력해 주시기 바랍니다(종료하려면 'q' 입력) : ") if message.lower() == "q": break telegramBot.sendMessage(message) |
▶ requirements.txt
1 2 3 4 5 6 7 |
certifi==2024.12.14 charset-normalizer==3.4.1 idna==3.10 requests==2.32.3 urllib3==2.3.0 |
※ pip install requests 명령을 실행했다.