2022-09-22 16:13:02 +03:00
|
|
|
"""
|
|
|
|
## PythonRMV
|
|
|
|
|
2022-09-22 19:35:21 +03:00
|
|
|
Small module that makes your journey with RMV REST API somehow easier. Based fully on official RMV API reference and HAFAS documentation.
|
2022-09-22 16:13:02 +03:00
|
|
|
|
2022-09-23 16:01:00 +03:00
|
|
|
## Usage
|
2022-09-22 16:13:02 +03:00
|
|
|
|
2022-09-23 16:01:00 +03:00
|
|
|
```py
|
|
|
|
import pyrmv
|
2022-09-22 16:13:02 +03:00
|
|
|
|
2022-09-23 23:58:05 +03:00
|
|
|
# Set API key
|
2022-09-24 14:59:54 +03:00
|
|
|
access_id = "Something"
|
2022-09-22 16:13:02 +03:00
|
|
|
|
2022-09-23 16:01:00 +03:00
|
|
|
# Get origin's and destination's location
|
2022-09-24 14:59:54 +03:00
|
|
|
origin = pyrmv.stop_by_name(access_id, "Frankfurt Hauptbahnhof", max_number=3)[0]
|
|
|
|
destination = pyrmv.stop_by_coords(access_id, 50.099613, 8.685449, max_number=3)[0]
|
2022-09-22 16:13:02 +03:00
|
|
|
|
2022-09-23 16:01:00 +03:00
|
|
|
# Find a trip by locations got
|
2022-09-24 14:59:54 +03:00
|
|
|
trip = pyrmv.trip_find(access_id, origin_id=origin.id, dest_id=destination.id)
|
2022-09-23 16:01:00 +03:00
|
|
|
```
|
2022-09-22 16:13:02 +03:00
|
|
|
"""
|
|
|
|
|
2022-09-22 19:35:21 +03:00
|
|
|
__name__ = "pyrmv"
|
2022-10-06 15:37:38 +03:00
|
|
|
__version__ = "0.3.0"
|
2022-09-22 19:35:21 +03:00
|
|
|
__license__ = "MIT License"
|
2022-09-22 16:13:02 +03:00
|
|
|
__author__ = "Profitroll"
|
|
|
|
|
2022-09-23 12:18:18 +03:00
|
|
|
from . import raw
|
2022-09-28 13:31:41 +03:00
|
|
|
from . import const
|
|
|
|
from . import enums
|
2022-09-23 14:53:33 +03:00
|
|
|
from . import errors
|
2022-09-23 16:01:00 +03:00
|
|
|
from . import utility
|
2022-09-23 23:59:48 +03:00
|
|
|
from . import classes
|
2022-09-23 14:53:33 +03:00
|
|
|
from .methods import *
|