반응형
텔레그램에서 botFather 를 찾은 후에 봇을 생성한다.
token을 적어놓은 후에 봇을 누르고 메시지 하나를 보낸다.
파이썬에서
pip install telepot
pip install telepot
으로 텔레그램 봇에 관련된 패키지를 다운로드 한다.
import telepot
token = '아까 적어 놓은 토큰'
bot = telepot
for i in bot.getUpdates():
print(i)
를 하게 되면, id 를 알 수 있게 된다. 그 id 번호로 대화를 걸 수 있게 된다.
그런다음에
import telepot
token = '아까 적어놓은 토큰'
bot = telepot.Bot(token)
id = '아까 그 ID'
bot.sendMessage(id, '안녕하세요')
으로 봇에게 메세지를 전달할 수 있게 된다.
반응형
'배웁시다!!' 카테고리의 다른 글
[python]팟캐스트 크롤링 및 다운로드를 해보자~!! (0) | 2020.03.20 |
---|---|
[python]텍스트 파일 특정 줄 삭제(사이즈 줄이기) 후 저장 (0) | 2020.03.18 |
[python] 파이썬 스케줄러 프로그램(scheduler) (0) | 2019.12.09 |
[github]Fork - a fast and friendly git client for Mac and Windows 프로그램 (0) | 2019.11.28 |
[python] pyinstaller에서 TypeError: an integer is required (got type bytes) 나올때 (4) | 2019.11.28 |