Ausgabe der neuen DB Einträge

This commit is contained in:
hubobel 2019-11-25 20:30:40 +01:00
parent 1e3a99b5d2
commit 0124238493
14 changed files with 252 additions and 0 deletions

23
Alzey-Mz.py Normal file
View file

@ -0,0 +1,23 @@
import requests
import telebot
TOKEN='680737840:AAEaa7Vxl_kZz_LWS1_S-lH6Eda7HXqu6Y4'
ChatID='322673713'
tb = telebot.TeleBot(TOKEN)
url_zitat = 'https://dbf.finalrewind.org/alzeyhbf.json?version=3'
resp_zitat = requests.get(url_zitat)
data_zitat = resp_zitat.json()
antwort=''
telegramm='Mainz - Alzey\n'
for i in data_zitat['departures']:
if i['train'] == 'RB 31':
print(i)
print(telegramm)
#tb.send_message(ChatID,telegramm)