This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# pip install telebot | |
import telebot | |
# pip install yfinance | |
import yfinance as yf | |
# to connect to monitor UptimeRobot | |
from keepalive import keep_alive | |
# Replace with your Telegram bot token from @BotFather | |
TOKEN = '8031656975:AAHbQlc2FF4ZL71SEwCX1-dwYOQ_dcGSqr4' | |
bot = telebot.TeleBot(TOKEN) |