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
|
|
|
|
|
|
|
## Frequently Asked Questions
|
|
|
|
|
|
|
|
- [Why are there raw versions and formatted ones?](#why-are-there-raw-versions-and-formatted-ones)
|
|
|
|
- [Some methods work slightly different](#some-methods-work-slightly-different)
|
|
|
|
- [Documentation is not perfectly clear](#documentation-is-not-perfectly-clear)
|
|
|
|
|
|
|
|
### Why are there raw versions and formatted ones?
|
|
|
|
|
|
|
|
For the purposes of my projects I don't really need all the stuff RMV gives (even though it's not much).
|
2022-09-22 19:35:21 +03:00
|
|
|
I only need some specific things. However I do understand that in some cases other users may find
|
|
|
|
those methods quite useful so I implemented them as well.
|
2022-09-22 16:13:02 +03:00
|
|
|
|
|
|
|
|
|
|
|
### Some methods work slightly different
|
|
|
|
|
2022-09-22 19:35:21 +03:00
|
|
|
Can be. Not all function arguments written may work perfectly because I simply did not test each and
|
|
|
|
every request. Some of arguments may be irrelevant in my use-case and the others are used quite rare at all.
|
2022-09-22 16:13:02 +03:00
|
|
|
Just [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.
|
|
|
|
|
|
|
|
### Documentation is not perfectly clear
|
|
|
|
|
2022-09-22 19:35:21 +03:00
|
|
|
Of course docs cannot be perfect as a python docstring, especially if sometimes I don't
|
|
|
|
know how things should correctly work. That's why you get HAFAS API docs in addition to your
|
|
|
|
RMV API key. Just use my functions together with those docs, if you want to build something
|
|
|
|
really sophisticated. However I'm not sure whether RMV supports that many HAFAS features publicly.
|
2022-09-22 16:13:02 +03:00
|
|
|
"""
|
|
|
|
|
2022-09-22 19:35:21 +03:00
|
|
|
__name__ = "pyrmv"
|
|
|
|
__version__ = "0.1.0"
|
|
|
|
__license__ = "MIT License"
|
2022-09-22 16:13:02 +03:00
|
|
|
__author__ = "Profitroll"
|
|
|
|
|
2022-09-22 16:57:58 +03:00
|
|
|
from . import raw
|