python code snippet
yahoo finance에서 KRW 환율 정보 얻어오기
yfinance 설치
yfiance code
import yfinance as yf
krw = yf.Ticker("KRW=X")
exchange_rate = krw.info.get('bid')
telegram bot 으로 message 보내기
import time
import telegram
TOKEN = "YOUR_TOKEN"
CHAT_ID = "1234567890"
bot = telegram.Bot(TOKEN)
while True:
time.sleep(1)
updates = bot.getUpdates()
if updates:
for u in updates:
print(u.message.chat_id)
print(u)
bot.sendMessage(chat_id = CHAT_ID, text="저는 봇입니다.")
Written on
November
12th,
2022
by
jungjik.lee
Feel free to share!