blob: 699e8aa09cb3ddbe089ff96f7f549798e93656d6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
# -*- coding: utf-8 -*-
import requests
from bs4 import BeautifulSoup
from bvggrabber.api import QueryApi, Departure
ACTUAL_QUERY_API_ENDPOINT = 'http://mobil.bvg.de/IstAbfahrtzeiten/index/mobil'
class ActualDepartureQueryApi(QueryApi):
def __init__(self, station):
super(ActualDepartureQueryApi, self).__init__()
if isinstance(station, str):
self.station_enc = station.encode('iso-8859-1')
elif isinstance(station, bytes):
self.station_enc = station
else:
raise ValueError("Invalid type for station")
self.station = station
def call(self):
params = {'input': self.station_enc}
response = requests.get(ACTUAL_QUERY_API_ENDPOINT, params=params)
if response.status_code == requests.codes.ok:
soup = BeautifulSoup(response.text)
if soup.find_all('form'):
# The station we are looking for is ambiguous or does not exist
stations = soup.find_all('option')
if stations:
# The station is ambiguous
stationlist = [s.get('value') for s in stations]
return (False, stationlist)
else:
# The station does not exist
return (False, [])
else:
# The station seems to exist
rows = soup.find('tbody').find_all('tr')
departures = []
for row in rows:
tds = row.find_all('td')
dep = Departure(start=self.station,
end=tds[2].text.strip(),
when=tds[0].text.strip(),
line=tds[1].text.strip())
departures.append(dep)
return (True, departures)
else:
response.raise_for_status()
|