header additions and req update
This commit is contained in:
parent
f1d3fd0050
commit
66b8ae5f34
@ -21,6 +21,7 @@ import sys
|
||||
import logging
|
||||
from telebot import types
|
||||
|
||||
bot_version = "0.0.1"
|
||||
user_list = []
|
||||
|
||||
class User: # Currently saving users in this class to test functionality -> later database
|
||||
@ -45,7 +46,7 @@ def send_start(message):
|
||||
|
||||
@bot.message_handler(commands=['version'])
|
||||
def send_version(message):
|
||||
bot.reply_to(message, version)
|
||||
bot.reply_to(message, bot_version)
|
||||
|
||||
|
||||
@bot.message_handler(commands=['help']) # /help -> sending all functions
|
||||
|
@ -0,0 +1,7 @@
|
||||
"""
|
||||
script for news fetching (by keywords)
|
||||
"""
|
||||
__author__ = "Florian Kellermann, Linus Eickhoff"
|
||||
__date__ = "15.03.2022"
|
||||
__version__ = "0.0.1"
|
||||
__license__ = "None"
|
@ -1 +1,4 @@
|
||||
pyTelegramBotAPI~=4.4.0
|
||||
beautifulsoup4==4.10.0
|
||||
Markdown==3.3.6
|
||||
Pillow==9.0.1
|
Loading…
Reference in New Issue
Block a user