프로그래밍/python

파이썬을 이용한 자동화 연습

해아's 2022. 9. 25. 13:40

python 설치 https://www.python.org/downloads/

 

Download Python

The official home of the Python Programming Language

www.python.org

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
반응형