Compare commits

..

No commits in common. "0a374236b434348517c603f6e3601eec79f26aba" and "da21f3ad77f9d506f57763af238910a006d19451" have entirely different histories.

16 changed files with 136 additions and 285 deletions

View File

@ -25,8 +25,7 @@ If you have everything listed in [requirements](#requirements), then let's begin
```py ```py
import pyrmv import pyrmv
# Set API key accessId = "Something" # Set API key
accessId = "Something"
# Get origin's and destination's location # Get origin's and destination's location
origin = pyrmv.raw.stop_by_name(accessid, "Frankfurt Hauptbahnhof", maxNo=3)[0]["StopLocation"] origin = pyrmv.raw.stop_by_name(accessid, "Frankfurt Hauptbahnhof", maxNo=3)[0]["StopLocation"]

View File

@ -8,20 +8,19 @@ Small module that makes your journey with RMV REST API somehow easier. Based ful
```py ```py
import pyrmv import pyrmv
# Set API key accessId = "Something" # Set API key
accessId = "Something"
# Get origin's and destination's location # Get origin's and destination's location
origin = pyrmv.raw.stop_by_name(accessid, "Frankfurt Hauptbahnhof", maxNo=1)[0] origin = pyrmv.raw.stop_by_name(accessid, "Frankfurt Hauptbahnhof", maxNo=3)[0]["StopLocation"]
destination = pyrmv.raw.stop_by_coords(accessid, 50.099613, 8.685449, maxNo=1)[0] destination = pyrmv.raw.stop_by_coords(accessid, 50.099613, 8.685449, maxNo=3)[0]["StopLocation"]
# Find a trip by locations got # Find a trip by locations got
trip = pyrmv.raw.trip_find(accessId, originId=origin.id, destExtId=destination.id) trip = pyrmv.raw.trip_find(accessId, originId=origin["id"], destExtId=destination["id"])
``` ```
""" """
__name__ = "pyrmv" __name__ = "pyrmv"
__version__ = "0.2.0" __version__ = "0.1.9"
__license__ = "MIT License" __license__ = "MIT License"
__author__ = "Profitroll" __author__ = "Profitroll"
@ -29,5 +28,4 @@ from . import raw
from . import errors from . import errors
from . import utility from . import utility
from . import methods from . import methods
from . import classes
from .methods import * from .methods import *

View File

@ -1,8 +0,0 @@
from isodate import parse_duration
class Gis():
def __init__(self, ref: str, route: dict):
self.ref = ref
self.dist = route["dist"]
self.duration = parse_duration(route["durS"])
self.geo = route["dirGeo"]

View File

@ -1,2 +0,0 @@
class Journey():
pass

View File

@ -1,20 +0,0 @@
from pyrmv.classes.Gis import Gis
from pyrmv.classes.Stop import StopTrip
from isodate import parse_duration
class Leg():
def __init__(self, data: dict):
self.origin = StopTrip(data["Origin"])
self.destination = StopTrip(data["Destination"])
if "GisRef" in data:
self.gis = Gis(data["GisRef"]["ref"], data["GisRoute"])
else:
self.gis = None
self.index = data["idx"]
self.name = data["name"]
self.type = data["type"]
self.duration = parse_duration(data["duration"])
if "dist" in data:
self.distance = data["dist"]
else:
self.distance = None

View File

@ -1,3 +0,0 @@
class Product():
def __init__(self):
pass

View File

@ -1,26 +0,0 @@
from time import strptime
class Stop():
def __init__(self, data: dict):
self.name = data["name"]
self.id = data["id"]
if "extId" in data:
self.ext_id = data["extId"]
else:
self.ext_id = None
self.lon = data["lon"]
self.lat = data["lat"]
def __str__(self) -> str:
return f"Stop {self.name} at {self.lon}, {self.lat}"
class StopTrip(Stop):
def __init__(self, data: dict):
self.type = data["type"]
self.date = strptime(data["date"], "%Y-%m-%d")
self.time = strptime(data["time"], "%H:%M:%S")
super().__init__(data)
def __str__(self) -> str:
return f"Stop {self.name} at {self.lon}, {self.lat} at {self.time} {self.date}"

View File

@ -1,25 +0,0 @@
from pyrmv.classes.Leg import Leg
from pyrmv.classes.Stop import StopTrip
from isodate import parse_duration
class Trip():
def __init__(self, data: dict):
self.raw_data = data
self.origin = StopTrip(data["Origin"])
self.destination = StopTrip(data["Destination"])
legs = []
for leg in data["LegList"]["Leg"]:
legs.append(Leg(leg))
self.legs = legs
self.calculation = data["calculation"]
self.index = data["idx"]
self.id = data["tripId"]
self.ctx_recon = data["ctxRecon"]
self.duration = parse_duration(data["duration"])
self.real_time_duration = parse_duration(data["rtDuration"])
self.checksum = data["checksum"]
self.transfer_count = data["transferCount"]
def __str__(self) -> str:
return f"Trip from {self.origin.name} to {self.destination.name} lasting {self.duration} ({self.real_time_duration}) with {len(self.legs)} legs and {self.transfer_count} transfers"

View File

@ -1,4 +1,3 @@
from datetime import datetime
from requests import get from requests import get
from typing import List, Union from typing import List, Union
from xmltodict import parse as xmlparse from xmltodict import parse as xmlparse
@ -12,22 +11,7 @@ except ImportError:
# 2.24. Departure Board (departureBoard) # 2.24. Departure Board (departureBoard)
def board_departure(accessId: str, def board_departure(accessId: str,
json: bool = True, json: bool = True
id: str = None, # type: ignore
extId: str = None, # type: ignore
direction: str = None, # type: ignore
date: Union[str, datetime] = None, # type: ignore
time: Union[str, datetime] = None, # type: ignore
duration: int = 60,
maxJourneys: int = -1,
products: int = None, # type: ignore
operators: Union[str, list] = None, # type: ignore
lines: Union[str, list] = None, # type: ignore
filterEquiv: bool = True,
attributes: Union[str, list] = None, # type: ignore
platforms: int = None, # type: ignore
passlist: bool = False,
boardType: Literal["DEP", "DEP_EQUIVS", "DEP_MAST", "DEP_STATION"] = "DEP"
) -> dict: ) -> dict:
if json: if json:
@ -38,10 +22,7 @@ def board_departure(accessId: str,
payload = {} payload = {}
for var, val in locals().items(): for var, val in locals().items():
if str(var) == "boardType": if str(var) not in ["json", "headers", "payload"]:
if val != None:
payload["type"] = val
elif str(var) not in ["json", "headers", "payload"]:
if val != None: if val != None:
payload[str(var)] = val payload[str(var)] = val

View File

@ -14,38 +14,38 @@ except ImportError:
# 2.37. HIM Search (himsearch) # 2.37. HIM Search (himsearch)
def him_search(accessId: str, def him_search(accessId: str,
json: bool = True, json: bool = True,
dateB: Union[str, datetime] = None, # type: ignore dateB: Union[str, datetime] = None,
dateE: Union[str, datetime] = None, # type: ignore dateE: Union[str, datetime] = None,
timeB: Union[str, datetime] = None, # type: ignore timeB: Union[str, datetime] = None,
timeE: Union[str, datetime] = None, # type: ignore timeE: Union[str, datetime] = None,
weekdays: Union[str, OrderedDict[str, bool]] = None, # type: ignore weekdays: Union[str, OrderedDict[str, bool]] = None,
himIds: Union[str, list] = None, # type: ignore himIds: Union[str, list] = None,
hierarchicalView: bool = False, hierarchicalView: bool = False,
operators: Union[str, list] = None, # type: ignore operators: Union[str, list] = None,
categories: Union[str, list] = None, # type: ignore categories: Union[str, list] = None,
channels: Union[str, list] = None, # type: ignore channels: Union[str, list] = None,
companies: Union[str, list] = None, # type: ignore companies: Union[str, list] = None,
lines: Union[str, list] = None, # type: ignore lines: Union[str, list] = None,
lineids: Union[str, list] = None, # type: ignore lineids: Union[str, list] = None,
stations: Union[str, list] = None, # type: ignore stations: Union[str, list] = None,
fromstation: str = None, # type: ignore fromstation: str = None,
tostation: str = None, # type: ignore tostation: str = None,
bothways: bool = None, # type: ignore bothways: bool = None,
trainnames: Union[str, list] = None, # type: ignore trainnames: Union[str, list] = None,
metas: Union[str, list] = None, # type: ignore metas: Union[str, list] = None,
himcategory: str = None, # type: ignore himcategory: str = None,
himtags: Union[str, list] = None, # type: ignore himtags: Union[str, list] = None,
regions: Union[str, list] = None, # type: ignore regions: Union[str, list] = None,
himtext: Union[str, list] = None, # type: ignore himtext: Union[str, list] = None,
himtexttags: Union[str, list] = None, # type: ignore himtexttags: Union[str, list] = None,
additionalfields: Union[str, list, dict] = None, # type: ignore additionalfields: Union[str, list, dict] = None,
poly: bool = False, poly: bool = False,
searchmode: Literal["MATCH", "NOMATCH", "TFMATCH"] = None, # type: ignore searchmode: Literal["MATCH", "NOMATCH", "TFMATCH"] = None,
affectedJourneyMode: Literal["ALL", "OFF"] = None, # type: ignore affectedJourneyMode: Literal["ALL", "OFF"] = None,
affectedJourneyStopMode: Literal["ALL", "IMP", "OFF"] = None, # type: ignore affectedJourneyStopMode: Literal["ALL", "IMP", "OFF"] = None,
orderBy: Union[str, list] = None, # type: ignore orderBy: Union[str, list] = None,
minprio: Union[str, int] = None, # type: ignore minprio: Union[str, int] = None,
maxprio: Union[str, int] = None # type: ignore maxprio: Union[str, int] = None
) -> dict: ) -> dict:
"""The himSearch will return a list of HIM messages if matched by the given criteria as well as affected """The himSearch will return a list of HIM messages if matched by the given criteria as well as affected
products if any. products if any.

View File

@ -1,7 +1,6 @@
from requests import get from requests import get
from typing import List, Union from typing import Union
from xmltodict import parse as xmlparse from xmltodict import parse as xmlparse
from pyrmv.classes.Stop import Stop
from pyrmv.utility.find_exception import find_exception from pyrmv.utility.find_exception import find_exception
@ -16,16 +15,15 @@ def stop_by_coords(accessId: str,
originCoordLong: Union[str, float], originCoordLong: Union[str, float],
lang: Literal["de", "da", "en", "es", "fr", "hu", "it", "nl", "no", "pl", "sv", "tr"] = "en", lang: Literal["de", "da", "en", "es", "fr", "hu", "it", "nl", "no", "pl", "sv", "tr"] = "en",
json: bool = True, json: bool = True,
raw_response: bool = False,
radius: Union[int, float] = 1000, radius: Union[int, float] = 1000,
maxNo: int = 10, maxNo: int = 10,
stopType: Literal["S", "P", "SP", "SE", "SPE"] = "S", stopType: Literal["S", "P", "SP", "SE", "SPE"] = "S",
locationSelectionMode: Literal["SLCT_N", "SLCT_A"] = None, # type: ignore locationSelectionMode: Literal["SLCT_N", "SLCT_A"] = None,
products: int = None, # type: ignore products: int = None,
meta: str = None, # type: ignore meta: str = None,
sattributes: Union[str, list] = None, # type: ignore sattributes: Union[str, list] = None,
sinfotexts: Union[str, list] = None # type: ignore sinfotexts: Union[str, list] = None
) -> Union[dict, List[Stop]]: ) -> dict:
"""The location.nearbystops service returns a list of stops around a given center coordinate (within a """The location.nearbystops service returns a list of stops around a given center coordinate (within a
radius of 1000m). The returned results are ordered by their distance to the center coordinate. radius of 1000m). The returned results are ordered by their distance to the center coordinate.
@ -36,8 +34,7 @@ def stop_by_coords(accessId: str,
* originCoordLat (Union[str, float]): Latitude of centre coordinate. * originCoordLat (Union[str, float]): Latitude of centre coordinate.
* originCoordLong (Union[str, float]): Longitude of centre coordinate. * originCoordLong (Union[str, float]): Longitude of centre coordinate.
* lang (Literal["de","da","en","es","fr","hu","it","nl","no","pl","sv","tr"], optional): The language of response. Defaults to "en". * lang (Literal["de","da","en","es","fr","hu","it","nl","no","pl","sv","tr"], optional): The language of response. Defaults to "en".
* json (bool, optional): Whether response should be retrieved as JSON. XML is returned if False. Only matters if raw_response is True. Defaults to True. * json (bool, optional): Whether response should be retrieved as JSON. XML is returned if False. Defaults to True.
* raw_response (bool, optional): Whether response should be returned as `dict` instead of `List[Stop]`. Defaults to False.
* radius (Union[int, float], optional): Search radius in meter around the given coordinate if any. Defaults to 1000. * radius (Union[int, float], optional): Search radius in meter around the given coordinate if any. Defaults to 1000.
* maxNo (int, optional): Maximum number of returned stops. Defaults to 10. * maxNo (int, optional): Maximum number of returned stops. Defaults to 10.
* stopType (Literal["S", "P", "SP", "SE", "SPE"], optional): Type filter for location types. Defaults to "S". * stopType (Literal["S", "P", "SP", "SE", "SPE"], optional): Type filter for location types. Defaults to "S".
@ -59,7 +56,7 @@ def stop_by_coords(accessId: str,
payload = {} payload = {}
for var, val in locals().items(): for var, val in locals().items():
if str(var) not in ["json", "headers", "payload", "raw_response"]: if str(var) not in ["json", "headers", "payload"]:
if val != None: if val != None:
payload[str(var)] = val payload[str(var)] = val
@ -67,13 +64,7 @@ def stop_by_coords(accessId: str,
find_exception(output.json()) find_exception(output.json())
if raw_response: if json:
if json: return output.json()
return output.json()
else:
return xmlparse(output.content)
else: else:
stops = [] return xmlparse(output.content)
for stop in output.json()["stopLocationOrCoordLocation"]:
stops.append(Stop(stop["StopLocation"]))
return stops

View File

@ -1,7 +1,6 @@
from requests import get from requests import get
from typing import List, Union from typing import Union
from xmltodict import parse as xmlparse from xmltodict import parse as xmlparse
from pyrmv.classes.Stop import Stop
from pyrmv.utility.find_exception import find_exception from pyrmv.utility.find_exception import find_exception
@ -15,20 +14,19 @@ def stop_by_name(accessId: str,
inputString: str, inputString: str,
lang: Literal["de", "da", "en", "es", "fr", "hu", "it", "nl", "no", "pl", "sv", "tr"] = "en", lang: Literal["de", "da", "en", "es", "fr", "hu", "it", "nl", "no", "pl", "sv", "tr"] = "en",
json: bool = True, json: bool = True,
raw_response: bool = False,
maxNo: int = 10, maxNo: int = 10,
stopType: Literal["A", "ALL", "AP", "P", "S", "SA", "SP"] = "ALL", stopType: Literal["A", "ALL", "AP", "P", "S", "SA", "SP"] = "ALL",
locationSelectionMode: Literal["SLCT_N", "SLCT_A"] = None, # type: ignore locationSelectionMode: Literal["SLCT_N", "SLCT_A"] = None,
products: int = None, # type: ignore products: int = None,
coordLat: Union[str, float] = None, # type: ignore coordLat: Union[str, float] = None,
coordLong: Union[str, float] = None, # type: ignore coordLong: Union[str, float] = None,
radius: Union[int, float] = 1000, radius: Union[int, float] = 1000,
refineId: str = None, # type: ignore refineId: str = None,
meta: str = None, # type: ignore meta: str = None,
stations: Union[str, list] = None, # type: ignore stations: Union[str, list] = None,
sattributes: Union[str, list] = None, # type: ignore sattributes: Union[str, list] = None,
filterMode: Literal["DIST_PERI", "EXCL_PERI", "SLCT_PERI"] = "DIST_PERI" filterMode: Literal["DIST_PERI", "EXCL_PERI", "SLCT_PERI"] = "DIST_PERI"
) -> Union[dict, List[Stop]]: ) -> dict:
"""The location.name service can be used to perform a pattern matching of a user input and to retrieve a list """The location.name service can be used to perform a pattern matching of a user input and to retrieve a list
of possible matches in the journey planner database. Possible matches might be stops/stations, points of of possible matches in the journey planner database. Possible matches might be stops/stations, points of
interest and addresses. interest and addresses.
@ -43,8 +41,7 @@ def stop_by_name(accessId: str,
* accessId (str): Access ID for identifying the requesting client. Get your key on [RMV website](https://opendata.rmv.de/site/start.html). * accessId (str): Access ID for identifying the requesting client. Get your key on [RMV website](https://opendata.rmv.de/site/start.html).
* inputString (str): Search for that token. * inputString (str): Search for that token.
* lang (Literal["de","da","en","es","fr","hu","it","nl","no","pl","sv","tr"], optional): The language of response. Defaults to "en". * lang (Literal["de","da","en","es","fr","hu","it","nl","no","pl","sv","tr"], optional): The language of response. Defaults to "en".
* json (bool, optional): Whether response should be retrieved as JSON. XML is returned if False. Only matters if raw_response is True. Defaults to True. * json (bool, optional): Whether response should be retrieved as JSON. XML is returned if False. Defaults to True.
* raw_response (bool, optional): Whether response should be returned as `dict` instead of `List[Stop]`. Defaults to False.
* maxNo (int, optional): Maximum number of returned stops. In range 1-1000. Defaults to 10. * maxNo (int, optional): Maximum number of returned stops. In range 1-1000. Defaults to 10.
* stopType (Literal["A", "ALL", "AP", "P", "S", "SA", "SP"], optional): Type filter for location types. Defaults to "ALL". * stopType (Literal["A", "ALL", "AP", "P", "S", "SA", "SP"], optional): Type filter for location types. Defaults to "ALL".
* locationSelectionMode (str, optional): Selection mode for locations. "SLCT_N": Not selectable, "SLCT_A": Selectable. Defaults to None. * locationSelectionMode (str, optional): Selection mode for locations. "SLCT_N": Not selectable, "SLCT_A": Selectable. Defaults to None.
@ -73,7 +70,7 @@ def stop_by_name(accessId: str,
if str(var) == "inputString": if str(var) == "inputString":
if val != None: if val != None:
payload["input"] = val payload["input"] = val
elif str(var) not in ["json", "headers", "payload", "raw_response"]: if str(var) not in ["json", "headers", "payload"]:
if val != None: if val != None:
payload[str(var)] = val payload[str(var)] = val
@ -81,13 +78,7 @@ def stop_by_name(accessId: str,
find_exception(output.json()) find_exception(output.json())
if raw_response: if json:
if json: return output.json()
return output.json()
else:
return xmlparse(output.content)
else: else:
stops = [] return xmlparse(output.content)
for stop in output.json()["stopLocationOrCoordLocation"]:
stops.append(Stop(stop["StopLocation"]))
return stops

View File

@ -1,8 +1,6 @@
from datetime import datetime
from requests import get from requests import get
from typing import List, Union from typing import List, Union
from xmltodict import parse as xmlparse from xmltodict import parse as xmlparse
from pyrmv.classes.Trip import Trip
from pyrmv.utility.find_exception import find_exception from pyrmv.utility.find_exception import find_exception
@ -15,89 +13,88 @@ except ImportError:
def trip_find(accessId: str, def trip_find(accessId: str,
lang: Literal["de", "da", "en", "es", "fr", "hu", "it", "nl", "no", "pl", "sv", "tr"] = "en", lang: Literal["de", "da", "en", "es", "fr", "hu", "it", "nl", "no", "pl", "sv", "tr"] = "en",
json: bool = True, json: bool = True,
raw_response: bool = False,
originId: str = None, # type: ignore originId: str = None,
originExtId: str = None, # type: ignore originExtId: str = None,
originCoordLat: Union[str, float] = None, # type: ignore originCoordLat: Union[str, float] = None,
originCoordLong: Union[str, float] = None, # type: ignore originCoordLong: Union[str, float] = None,
originCoordName: str = None, # type: ignore originCoordName: str = None,
destId: str = None, # type: ignore destId: str = None,
destExtId: str = None, # type: ignore destExtId: str = None,
destCoordLat: Union[str, float] = None, # type: ignore destCoordLat: Union[str, float] = None,
destCoordLong: Union[str, float] = None, # type: ignore destCoordLong: Union[str, float] = None,
destCoordName: str = None, # type: ignore destCoordName: str = None,
via: str = None, # type: ignore via: str = None,
viaId: str = None, # type: ignore viaId: str = None,
viaWaitTime: int = 0, viaWaitTime: int = 0,
avoid: str = None, # type: ignore avoid: str = None,
avoidId: str = None, # type: ignore avoidId: str = None,
viaGis: str = None, # type: ignore viaGis: str = None,
changeTimePercent: int = 100, changeTimePercent: int = 100,
minChangeTime: int = None, # type: ignore minChangeTime: int = None,
maxChangeTime: int = None, # type: ignore maxChangeTime: int = None,
addChangeTime: int = None, # type: ignore addChangeTime: int = None,
maxChange: int = None, # type: ignore maxChange: int = None,
date: Union[str, datetime] = None, # type: ignore date: str = None,
time: Union[str, datetime] = None, # type: ignore time: str = None,
searchForArrival: bool = False, searchForArrival: bool = False,
numF: int = None, # type: ignore numF: int = None,
numB: int = None, # type: ignore numB: int = None,
context: str = None, # type: ignore context: str = None,
poly: bool = False, poly: bool = False,
polyEnc: Literal["DLT", "GPA", "N"] = "N", polyEnc: Literal["DLT", "GPA", "N"] = "N",
passlist: bool = False, passlist: bool = False,
products: int = None, # type: ignore products: str = None,
operators: Union[str, list] = None, # type: ignore operators: Union[str, list] = None,
attributes: Union[str, list] = None, # type: ignore attributes: Union[str, list] = None,
sattributes: Union[str, list] = None, # type: ignore sattributes: Union[str, list] = None,
fattributes: Union[str, list] = None, # type: ignore fattributes: Union[str, list] = None,
lines: Union[str, list] = None, # type: ignore lines: Union[str, list] = None,
lineids: Union[str, list] = None, # type: ignore lineids: Union[str, list] = None,
avoidPaths: List[Literal["SW", "EA", "ES", "RA", "CB"]] = None, # type: ignore avoidPaths: List[Literal["SW", "EA", "ES", "RA", "CB"]] = None,
originWalk: Union[str, list] = None, # type: ignore originWalk: Union[str, list] = None,
originBike: Union[str, list] = None, # type: ignore originBike: Union[str, list] = None,
originCar: Union[str, list] = None, # type: ignore originCar: Union[str, list] = None,
originTaxi: Union[str, list] = None, # type: ignore originTaxi: Union[str, list] = None,
originPark: Union[str, list] = None, # type: ignore originPark: Union[str, list] = None,
originMeta: Union[str, list] = None, # type: ignore originMeta: Union[str, list] = None,
destWalk: Union[str, list] = None, # type: ignore destWalk: Union[str, list] = None,
destBike: Union[str, list] = None, # type: ignore destBike: Union[str, list] = None,
destCar: Union[str, list] = None, # type: ignore destCar: Union[str, list] = None,
destTaxi: Union[str, list] = None, # type: ignore destTaxi: Union[str, list] = None,
destPark: Union[str, list] = None, # type: ignore destPark: Union[str, list] = None,
destMeta: Union[str, list] = None, # type: ignore destMeta: Union[str, list] = None,
totalWalk: Union[str, list] = None, # type: ignore totalWalk: Union[str, list] = None,
totalBike: Union[str, list] = None, # type: ignore totalBike: Union[str, list] = None,
totalCar: Union[str, list] = None, # type: ignore totalCar: Union[str, list] = None,
totalTaxi: Union[str, list] = None, # type: ignore totalTaxi: Union[str, list] = None,
totalMeta: Union[str, list] = None, # type: ignore totalMeta: Union[str, list] = None,
gisProducts: str = None, # type: ignore gisProducts: str = None,
includeIv: bool = False, includeIv: bool = False,
ivOnly: bool = False, ivOnly: bool = False,
mobilityProfile: str = None, # type: ignore mobilityProfile: str = None,
bikeCarriage: bool = False, bikeCarriage: bool = False,
bikeCarriageType: Literal["SINGLEBIKES", "SMALLGROUPS", "LARGEGROUPS"] = None, # type: ignore bikeCarriageType: Literal["SINGLEBIKES", "SMALLGROUPS", "LARGEGROUPS"] = None,
sleepingCar: bool = False, sleepingCar: bool = False,
couchetteCoach: bool = False, couchetteCoach: bool = False,
@ -106,26 +103,26 @@ def trip_find(accessId: str,
eco: bool = False, eco: bool = False,
ecoCmp: bool = False, ecoCmp: bool = False,
ecoParams: str = None, # type: ignore ecoParams: str = None,
rtMode: Literal["FULL", "INFOS", "OFF", "REALTIME", "SERVER_DEFAULT"] = None, # type: ignore rtMode: Literal["FULL", "INFOS", "OFF", "REALTIME", "SERVER_DEFAULT"] = None,
unsharp: bool = False, unsharp: bool = False,
trainFilter: str = None, # type: ignore trainFilter: str = None,
economic: bool = False, economic: bool = False,
groupFilter: str = None, # type: ignore groupFilter: str = None,
blockingList: str = None, # type: ignore blockingList: str = None,
blockedEdges: str = None, # type: ignore blockedEdges: str = None,
trainComposition: bool = False, trainComposition: bool = False,
includeEarlier: bool = False, includeEarlier: bool = False,
withICTAlternatives: bool = False, withICTAlternatives: bool = False,
tariff: bool = None, # type: ignore tariff: bool = None,
trafficMessages: bool = False, trafficMessages: bool = False,
travellerProfileData: str = None, # type: ignore travellerProfileData: str = None,
withFreq: bool = True withFreq: bool = True
) -> Union[dict, List[Trip]]: ) -> dict:
"""The trip service calculates a trip from a specified origin to a specified destination. These might be """The trip service calculates a trip from a specified origin to a specified destination. These might be
stop/station IDs or coordinates based on addresses and points of interest validated by the location service or stop/station IDs or coordinates based on addresses and points of interest validated by the location service or
coordinates freely defined by the client. coordinates freely defined by the client.
@ -135,8 +132,7 @@ def trip_find(accessId: str,
### Args: ### Args:
* accessId (str): Access ID for identifying the requesting client. Get your key on [RMV website](https://opendata.rmv.de/site/start.html). * accessId (str): Access ID for identifying the requesting client. Get your key on [RMV website](https://opendata.rmv.de/site/start.html).
* lang (Literal["de","da","en","es","fr","hu","it","nl","no","pl","sv","tr"], optional): The language of response. Defaults to "en". * lang (Literal["de","da","en","es","fr","hu","it","nl","no","pl","sv","tr"], optional): The language of response. Defaults to "en".
* json (bool, optional): Whether response should be retrieved as JSON. XML is returned if False. Only matters if raw_response is True. Defaults to True. * json (bool, optional): Whether response should be retrieved as JSON. XML is returned if False. Defaults to True.
* raw_response (bool, optional): Whether response should be returned as `dict` instead of `List[Trip]`. Defaults to False.
* originId (str, optional): Specifies the station/stop ID of the origin for the trip. Such ID can be retrieved from stopByName() or stopByCoords(). Defaults to None. * originId (str, optional): Specifies the station/stop ID of the origin for the trip. Such ID can be retrieved from stopByName() or stopByCoords(). Defaults to None.
* originExtId (str, optional): Deprecated. Please use originId as it supports external IDs. Specifies the external station/stop ID of the origin for the trip. Such ID can be retrieved from stopByName() or stopByCoords(). Defaults to None. * originExtId (str, optional): Deprecated. Please use originId as it supports external IDs. Specifies the external station/stop ID of the origin for the trip. Such ID can be retrieved from stopByName() or stopByCoords(). Defaults to None.
* originCoordLat (Union[str, float], optional): Latitude of station/stop coordinate of the trip's origin. The coordinate can be retrieved from stopByName() or stopByCoords(). Defaults to None. * originCoordLat (Union[str, float], optional): Latitude of station/stop coordinate of the trip's origin. The coordinate can be retrieved from stopByName() or stopByCoords(). Defaults to None.
@ -232,19 +228,7 @@ def trip_find(accessId: str,
payload = {} payload = {}
for var, val in locals().items(): for var, val in locals().items():
if str(var) == "date": if str(var) not in ["json", "headers", "payload"]:
if val != None:
if isinstance(val, datetime):
payload[str(var)] = val.strftime("%Y-%m-%d")
else:
payload[str(var)] = val
elif str(var) == "time":
if val != None:
if isinstance(val, datetime):
payload[str(var)] = val.strftime("%H:%M")
else:
payload[str(var)] = val
elif str(var) not in ["json", "headers", "payload", "raw_response"]:
if val != None: if val != None:
payload[str(var)] = val payload[str(var)] = val
@ -252,13 +236,7 @@ def trip_find(accessId: str,
find_exception(output.json()) find_exception(output.json())
if raw_response: if json:
if json: return output.json()
return output.json()
else:
return xmlparse(output.content)
else: else:
trips = [] return xmlparse(output.content)
for trip in output.json()["Trip"]:
trips.append(Trip(trip))
return trips

View File

@ -1,3 +1,2 @@
requests requests
xmltodict xmltodict
isodate

View File

@ -2,10 +2,10 @@ from setuptools import setup
setup( setup(
name="pyrmv", name="pyrmv",
version="0.2.0", version="0.1.9",
author="Profitroll", author="Profitroll",
description="Small module that makes your journey with RMV REST API somehow easier.", description="Small module that makes your journey with RMV REST API somehow easier.",
long_description="## PythonRMV\n\nSmall module that makes your journey with RMV REST API somehow easier. Based fully on official RMV API reference and HAFAS documentation.\n\n## Usage\n\n```py\nimport pyrmv\n\n# Set API key\naccessId = \"Something\"\n\n# Get origin's and destination's location\norigin = pyrmv.raw.stop_by_name(accessid, \"Frankfurt Hauptbahnhof\", maxNo=3)[0][\"StopLocation\"]\ndestination = pyrmv.raw.stop_by_coords(accessid, 50.099613, 8.685449, maxNo=3)[0][\"StopLocation\"]\n\n## Find a trip by locations got\ntrip = pyrmv.raw.trip_find(accessId, originId=origin[\"id\"], destExtId=destination[\"id\"])\n```\n\n## Frequently Asked Questions\n\n- Why are there raw versions and formatted ones?\n- Some methods work slightly different\n- Documentation is not perfectly clear\n\n### Why are there raw versions and formatted ones?\n\nFor the purposes of my projects I don't really need all the stuff RMV gives (even though it's not much).\nI only need some specific things. However I do understand that in some cases other users may find\nthose methods quite useful so I implemented them as well.\n\n\n### Some methods work slightly different\n\nCan be. Not all function arguments written may work perfectly because I simply did not test each and\nevery request. Some of arguments may be irrelevant in my use-case and the others are used quite rare at all.\nJust [make an issue](https://git.end-play.xyz/profitroll/PythonRMV/issues/new) and I'll implement it correct when I'll have some free time.\n\n### Documentation is not perfectly clear\n\nOf course docs cannot be perfect as a python docstring, especially if sometimes I don't\nknow how things should correctly work. That's why you get HAFAS API docs in addition to your\nRMV API key. Just use my functions together with those docs, if you want to build something\nreally sophisticated. However I'm not sure whether RMV supports that many HAFAS features publicly.\n\n## To-Do\n- [ ] arrivalBoard (board_arrival) \n- [ ] departureBoard (board_departure) \n- [x] himsearch (him_search) \n- [ ] journeyDetail (journey_detail)\n- [x] location.nearbystops (stop_by_coords) \n- [x] location.name (stop_by_name) \n- [x] trip (trip_find) \n- [ ] recon (trip_recon)", long_description="Small module that makes your journey with RMV REST API somehow easier. Based fully on official RMV API reference and HAFAS documentation.\n\n# Usage\n\n```py\nimport pyrmv\n\naccessId = \"Something\" # Set API key\n\n# Get origin's and destination's location\norigin = pyrmv.raw.stop_by_name(accessid, \"Frankfurt Hauptbahnhof\", maxNo=3)[0][\"StopLocation\"]\ndestination = pyrmv.raw.stop_by_coords(accessid, 50.099613, 8.685449, maxNo=3)[0][\"StopLocation\"]\n\n# Find a trip by locations got\ntrip = pyrmv.raw.trip_find(accessId, originId=origin[\"id\"], destExtId=destination[\"id\"])\n```\n\n# Frequently Asked Questions\n\n- Why are there raw versions and formatted ones?\n- Some methods work slightly different\n- Documentation is not perfectly clear\n\n## Why are there raw versions and formatted ones?\n\nFor the purposes of my projects I don't really need all the stuff RMV gives (even though it's not much).\nI only need some specific things. However I do understand that in some cases other users may find\nthose methods quite useful so I implemented them as well.\n\n\n## Some methods work slightly different\n\nCan be. Not all function arguments written may work perfectly because I simply did not test each and\nevery request. Some of arguments may be irrelevant in my use-case and the others are used quite rare at all.\nJust [make an issue](https://git.end-play.xyz/profitroll/PythonRMV/issues/new) and I'll implement it correct when I'll have some free time.\n\n## Documentation is not perfectly clear\n\nOf course docs cannot be perfect as a python docstring, especially if sometimes I don't\nknow how things should correctly work. That's why you get HAFAS API docs in addition to your\nRMV API key. Just use my functions together with those docs, if you want to build something\nreally sophisticated. However I'm not sure whether RMV supports that many HAFAS features publicly.\n\n# To-Do\n- [ ] arrivalBoard (board_arrival) \n- [ ] departureBoard (board_departure) \n- [x] himsearch (him_search) \n- [ ] journeyDetail (journey_detail)\n- [x] location.nearbystops (stop_by_coords) \n- [x] location.name (stop_by_name) \n- [x] trip (trip_find) \n- [ ] recon (trip_recon)",
long_description_content_type="text/markdown", long_description_content_type="text/markdown",
author_email="profitroll@end-play.xyz", author_email="profitroll@end-play.xyz",
url="https://git.end-play.xyz/profitroll/PythonRMV", url="https://git.end-play.xyz/profitroll/PythonRMV",
@ -19,13 +19,11 @@ setup(
"pyrmv.raw", "pyrmv.raw",
"pyrmv.errors", "pyrmv.errors",
"pyrmv.methods", "pyrmv.methods",
"pyrmv.utility", "pyrmv.utility"
"pyrmv.classes"
], ],
install_requires=[ install_requires=[
"requests", "requests",
"xmltodict", "xmltodict"
"isodate"
], ],
classifiers=[ classifiers=[
"Development Status :: 1 - Planning", "Development Status :: 1 - Planning",