Structural changes
Some checks failed
Tests / test (3.10) (push) Failing after 1m10s
Tests / test (3.7) (push) Has been cancelled
Tests / test (3.8) (push) Has been cancelled
Tests / test (3.9) (push) Has been cancelled
Tests / test (3.11) (push) Has been cancelled

This commit is contained in:
2023-11-19 22:38:51 +01:00
parent eb9a043c34
commit 9282578788
55 changed files with 144 additions and 150 deletions

30
src/pyrmv/__init__.py Normal file
View File

@@ -0,0 +1,30 @@
"""
## PythonRMV
Small module that makes your journey with RMV REST API somehow easier. Based fully on official RMV API reference and HAFAS documentation.
## Usage
```py
import pyrmv
# Define a Client with API key
client = pyrmv.Client("AcessId")
# Get origin's and destination's location
origin = client.stop_by_name("Frankfurt Hauptbahnhof", max_number=3)[0]
destination = client.stop_by_coords(50.099613, 8.685449, max_number=3)[0]
# Find a trip by locations got
trip = client.trip_find(origin_id=origin.id, dest_id=destination.id)
```
"""
__name__ = "pyrmv"
__version__ = "0.3.6"
__license__ = "MIT License"
__author__ = "Profitroll"
from . import const, enums, errors, raw, utility
from .classes import *
from .classes.Client import Client