From 2869559f6764a2f0e081cf284d72834160c52ee1 Mon Sep 17 00:00:00 2001 From: Christian Struck Date: Fri, 25 Jan 2013 19:10:36 +0100 Subject: added more features for the scheduledparser and fixed some minor errors --- bvggrabber/api/scheduleddeparture.py | 32 +++++++++++++++++++++++++------- 1 file changed, 25 insertions(+), 7 deletions(-) (limited to 'bvggrabber') diff --git a/bvggrabber/api/scheduleddeparture.py b/bvggrabber/api/scheduleddeparture.py index 594dd5d..d2c46a3 100644 --- a/bvggrabber/api/scheduleddeparture.py +++ b/bvggrabber/api/scheduleddeparture.py @@ -1,17 +1,33 @@ # -*- coding: utf-8 -*- import requests +from datetime import datetime + from bs4 import BeautifulSoup from bvggrabber.api import QueryApi, Departure -SCHEDULE_QUERY_API_ENDPOINT = 'http://mobil.bvg.de/Fahrinfo/bin/stboard.bin/dox' +SCHEDULED_QUERY_API_ENDPOINT = 'http://mobil.bvg.de/Fahrinfo/bin/stboard.bin/dox' + + +class Vehicle(): + + S = 1 + U = 2 + TRAM = 4 + BUS = 8 + FERRY = 16 + RB = 32 + IC = 64 -class ScheduleDepartureQueryApi(QueryApi): + _ALL = 127 - def __init__(self, station): - super(ScheduleDepartureQueryApi, self).__init__() + +class ScheduledDepartureQueryApi(QueryApi): + + def __init__(self, station, vehicles=Vehicle._ALL, limit=5): + super(ScheduledDepartureQueryApi, self).__init__() if isinstance(station, str): self.station_enc = station.encode('iso-8859-1') elif isinstance(station, bytes): @@ -19,10 +35,13 @@ class ScheduleDepartureQueryApi(QueryApi): else: raise ValueError("Invalid type for station") self.station = station + self.vehicles = bin(vehicles)[2:] + self.limit = limit def call(self): - params = {'input': self.station_enc, 'time': '12:00', 'date': '25.01.2013','productsFilter': 11, 'maxJourneys': 7, 'start': 'yes'} - response = requests.get(SCHEDULE_QUERY_API_ENDPOINT, params=params) + + params = {'input': self.station_enc, 'time': datetime.now().strftime('%H:%M'), 'date': datetime.now().strftime('%d.%m.%Y'),'productsFilter': self.vehicles, 'maxJourneys': self.limit, 'start': 'yes'} + response = requests.get(SCHEDULED_QUERY_API_ENDPOINT, params=params) if response.status_code == requests.codes.ok: soup = BeautifulSoup(response.text) if soup.find('span', 'error'): @@ -37,7 +56,6 @@ class ScheduleDepartureQueryApi(QueryApi): return (False, []) else: # The station seems to exist - #rows = soup.find('tbody').find_all('tr') rows = soup.find('tbody').find_all('tr') departures = [] for row in rows: -- cgit v1.2.3