1. 챗봇 계정 만들기
(1) 휴대폰 텔레그램 APP 설치
(2) BotFather과 대화 시작하기
(3) Telegram Bot 생성 후 토큰 Key 받기
2. 주피터 노트북에 텔래그램 설치
!pip install python-telegram-bot
import telegram
token = '본인의 토큰을 붙여넣어주세요'
bot = telegram.Bot(token=token)
for i in bot.getUpdates():
print(i.message)
bot.sendMessage(chat_id='아이디', text='쓰고 싶은 말')
3. 주피터 노트북에 텔래그램 설치
'Python' 카테고리의 다른 글
[Python 기초] while 반복문 (0) | 2020.09.06 |
---|---|
LeetCode 206. Reverse Linked List - Python (0) | 2020.08.11 |
[Python 기초] 크롤링 실습 - 네이버 뉴스 기사 크롤링하기 (0) | 2020.05.23 |
[Python 기초] 프로그래밍 시작하기 (0) | 2020.05.16 |
[Python 기초] 함수 (Function) (0) | 2020.04.23 |
댓글