python 설치 https://www.python.org/downloads/
cmd로 셋팅할폴더로 이동
pip install selenium chromedriver_autoinstaller telegram python-telegram-bot
https://api.telegram.org/bot[봇토큰]/getUpdates
import telegram
bot_token = "[봇토큰]" #봇토큰
chat_id= "[채팅방아이디]" #상대방 아이디
text = 'Bot에서 보낸 메세지입니다.' # 보낼 메세지
bot = telegram.Bot(token = bot_token)
bot.sendMessage(chat_id=chat_id, text=text)
끝
728x90
반응형