Skip to content

Instantly share code, notes, and snippets.

@gsam1
Created September 10, 2022 11:38
Show Gist options
  • Save gsam1/1a82a71dc103d452114a3855f146df64 to your computer and use it in GitHub Desktop.
Save gsam1/1a82a71dc103d452114a3855f146df64 to your computer and use it in GitHub Desktop.
import telebot
TOKEN = "<YOUR-TOKEN-HERE>"
CHANNEL = "<YOUR-CHANNEL-ID-HERE>"
tb = telebot.TeleBot(TOKEN, parse_mode=None)
def run_screener() -> str:
'''
This is where you would develop your screener.
It is important to note - you should return a string.
'''
return "I generated a new signal!"
def send_telegram_signals() -> None:
msg = run_screener()
tb.send_message(CHANNEL, msg)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment