From e4db44b084582236111e62d2767542d1a4dfb99d Mon Sep 17 00:00:00 2001 From: Gereon Dusella Date: Thu, 12 Dec 2019 20:26:52 +0100 Subject: changed url protocol to HTTPS, fixed crawler --- bvggrabber/api/actualdeparture.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'bvggrabber/api/actualdeparture.py') diff --git a/bvggrabber/api/actualdeparture.py b/bvggrabber/api/actualdeparture.py index e7c084b..7d90ca0 100644 --- a/bvggrabber/api/actualdeparture.py +++ b/bvggrabber/api/actualdeparture.py @@ -6,7 +6,7 @@ from bs4 import BeautifulSoup from bvggrabber.api import QueryApi, Departure, Response -ACTUAL_API_ENDPOINT = 'http://mobil.bvg.de/Fahrinfo/bin/stboard.bin/dox?ld=0.1&rt=0&' +ACTUAL_API_ENDPOINT = 'https://mobil.bvg.de/Fahrinfo/bin/stboard.bin/dox?ld=0.1&rt=0&' class ActualDepartureQueryApi(QueryApi): @@ -43,8 +43,8 @@ class ActualDepartureQueryApi(QueryApi): return Response(False) else: # The station seems to exist - result = soup.find('div', {'id': '', - 'class': 'ivu_result_box'}) + result = soup.find('table', {'id': '', + 'class': 'ivu_table'}) if result is None: return Response(True, self.station, []) rows = result.find_all('tr') -- cgit v1.2.3