DBA

Python - Telegram Bot 본문

[3] Development/Python

Python - Telegram Bot

코볼 2022. 5. 11. 15:21
728x90
반응형
SMALL

Telegram을 실행하고

BotFather와 대화를 해서 token을 받는다.

Json Dumps Bot과 대화를 해서 Json 형식의 내 정보를 받는다. (id -> chat_id)

 

python 터미널 에서 아래 명령어를 실행해서 Telegra을 설치 한다.

pip install python-telegram-bot

 

 

import telegram
# Bot Father가 알려준 token정보
bot = telegram.Bot(token='aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa')
# Json Dumps Bot이 알려준 id
bot.sendMessage(chat_id=111111111, text='하이, StarDBA')

token, chat_id는 위에서 알아온 자신의 것을 넣으면 된다.

728x90
반응형
LIST
Comments