Stuff
This commit is contained in:
parent
1b1e258172
commit
7848968c2d
1 changed files with 3 additions and 1 deletions
2
run.py
2
run.py
|
@ -7,6 +7,7 @@ import json
|
||||||
from config import updater
|
from config import updater
|
||||||
from config import bot
|
from config import bot
|
||||||
|
|
||||||
|
os.environ['TZ'] = 'Europe/Berlin'
|
||||||
logging.basicConfig(format='%(asctime)s - %(name)s - %(levelname)s - %(message)s',
|
logging.basicConfig(format='%(asctime)s - %(name)s - %(levelname)s - %(message)s',
|
||||||
level=logging.INFO)
|
level=logging.INFO)
|
||||||
|
|
||||||
|
@ -81,6 +82,7 @@ def sendAudio(a, b):
|
||||||
a.send_message(chat_id=user["chatId"], text='Der frühe Vogel fängt den Wurm, und hier ist deine motivation für heute:')
|
a.send_message(chat_id=user["chatId"], text='Der frühe Vogel fängt den Wurm, und hier ist deine motivation für heute:')
|
||||||
a.send_audio(chat_id=user["chatId"], audio=open('mp3/'+day+'.mp3', 'rb'))
|
a.send_audio(chat_id=user["chatId"], audio=open('mp3/'+day+'.mp3', 'rb'))
|
||||||
else:
|
else:
|
||||||
|
for user in users:
|
||||||
a.send_message(chat_id=user["chatId"], text='Für heute habe ich keine Motivierende nachricht gefunden, das wird bestimmt ein scheiß tag :(')
|
a.send_message(chat_id=user["chatId"], text='Für heute habe ich keine Motivierende nachricht gefunden, das wird bestimmt ein scheiß tag :(')
|
||||||
|
|
||||||
|
|
||||||
|
|
Reference in a new issue