|
|
@ -2,6 +2,8 @@ import datetime |
|
|
|
from telegram import ParseMode |
|
|
|
import requests |
|
|
|
|
|
|
|
DISABLED_GROUPS = [-1001301570558] |
|
|
|
|
|
|
|
DIETS = { |
|
|
|
"veggy": "fleischlos", |
|
|
|
"fleisch": "mit Fleisch", |
|
|
@ -67,6 +69,8 @@ MODES = { |
|
|
|
|
|
|
|
|
|
|
|
def mensa(bot, update, args): |
|
|
|
if update.message.chat_id in DISABLED_GROUPS: |
|
|
|
return |
|
|
|
which = "zentral" |
|
|
|
filter_categories = MODES["light"] |
|
|
|
today = datetime.datetime.now().date() |
|
|
|