본문 바로가기
Python

[Python 기초] 크롤링 실습 - 텔레그램 봇 만들기

by Air’s Big Data 2020. 5. 30.

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. 주피터 노트북에 텔래그램 설치 

 

 

 

(참고 : https://antilibrary.org/2060, hogni.tistory.com/54)

댓글