-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbmtc.py
31 lines (23 loc) · 768 Bytes
/
bmtc.py
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
import requests
import json
# import functions from child class : BusStop
from bus_stop import BusStop
# import functions from child class : Route
from route import Route
# import the base url from Constants class
from constants import Constants
class Bmtc(BusStop, Route):
# Get trip fare
def trip_fare(self, source, destination, service_type, adults_count):
TRIP_FARE_URL = Constants.BASE_URL + "/tripfare/details"
x = service_type if service_type in Constants.SERVICE_TYPE else None
print x
if x is not None:
PARAMS = {'source': source, 'destination': destination,
'servieType': x, 'adults': adults_count}
r = requests.post(TRIP_FARE_URL, data=PARAMS)
if r.status_code is 200:
return r.json()
else:
return
bmtc = Bmtc()