v0.4.0 #53
36
wiki/Home.md
36
wiki/Home.md
@ -2,4 +2,38 @@
|
||||
|
||||
Welcome to the project's Wiki.
|
||||
|
||||
Conceptional there are two different types of methods. Normal and raw ones. Raw methods are only beautiful variant of HTTP requests, nothing except for that actually. Normal ones are meant to be used as objects. You can still provide strings here and there, but basic concept is focused on objects usage.
|
||||
This module aims to provide eased access to RMV's OpenData API endpoints and enable some home-projects to show the data about public transit state at the moment. As for now, async is not supported and is not necessarily planned in the future, so bigger projects should consider this before using this module in the first place.
|
||||
|
||||
## Basic concepts behind
|
||||
|
||||
So the module `pyrmv` has two options to choose from when it comes to the usage:
|
||||
|
||||
1. Using higher-level methods of the class [pyrmv.Client](https://git.end-play.xyz/profitroll/PythonRMV/wiki/Client). These methods provide pythonic objects, can throw exceptions and are overall pretty neat.
|
||||
2. Using raw functions from [pyrmv.raw](https://git.end-play.xyz/profitroll/PythonRMV/wiki/Raw-Functions). These functions are basically a small interface for HTTP requests that happen in the background and have little to no processing behind the scenes.
|
||||
|
||||
Your preferred variant depends on the use case, but usually higher-level methods of the Client should be the match.
|
||||
|
||||
## Objects
|
||||
|
||||
This module does **not** use the [FPTF](https://github.com/public-transport/friendly-public-transport-format) because it aims to give full access to the API RMV provides, thus objects Client gives you will contain a bit more information.
|
||||
|
||||
These objects are implemented in pyrmv:
|
||||
|
||||
* [BoardArrival](https://git.end-play.xyz/profitroll/PythonRMV/wiki/classes.BoardArrival)
|
||||
* [BoardDeparture](https://git.end-play.xyz/profitroll/PythonRMV/wiki/classes.BoardDeparture)
|
||||
* [LineArrival](https://git.end-play.xyz/profitroll/PythonRMV/wiki/classes.LineArrival)
|
||||
* [LineDeparture](https://git.end-play.xyz/profitroll/PythonRMV/wiki/classes.LineDeparture)
|
||||
* [Gis](https://git.end-play.xyz/profitroll/PythonRMV/wiki/classes.Gis)
|
||||
* [Journey](https://git.end-play.xyz/profitroll/PythonRMV/wiki/classes.Journey)
|
||||
* [Leg](https://git.end-play.xyz/profitroll/PythonRMV/wiki/classes.Leg)
|
||||
* [Channel](https://git.end-play.xyz/profitroll/PythonRMV/wiki/classes.Channel)
|
||||
* [Message](https://git.end-play.xyz/profitroll/PythonRMV/wiki/classes.Message)
|
||||
* [Url](https://git.end-play.xyz/profitroll/PythonRMV/wiki/classes.Url)
|
||||
* [Stop](https://git.end-play.xyz/profitroll/PythonRMV/wiki/classes.Stop)
|
||||
* [StopTrip](https://git.end-play.xyz/profitroll/PythonRMV/wiki/classes.StopTrip)
|
||||
* [Trip](https://git.end-play.xyz/profitroll/PythonRMV/wiki/classes.Trip)
|
||||
* ~~[Ticket](https://git.end-play.xyz/profitroll/PythonRMV/wiki/classes.Ticket)~~ (WIP)
|
||||
|
||||
## Note for bigger projects
|
||||
|
||||
As you may already know, bigger projects like [Öffi](https://gitlab.com/oeffi/oeffi) and [DB Navigator](https://play.google.com/store/apps/details?id=de.hafas.android.db) use NVV's API instead of RMV's for navigation and public transit querying. Reasons behind this are clear as day and from perspective of pyrmv it's highly recommended you also choose that way, because RMV loves to change or break their API in unexpected places and does not cooperate with developers well enough when they do so.
|
||||
|
1
wiki/Raw-Functions.md
Normal file
1
wiki/Raw-Functions.md
Normal file
@ -0,0 +1 @@
|
||||
Docs are not available yet. Please, use the linting in your IDE until the documentation is there.
|
@ -1,15 +1,21 @@
|
||||
## [Home](https://git.end-play.xyz/profitroll/PythonRMV/wiki)
|
||||
# [Home](https://git.end-play.xyz/profitroll/PythonRMV/wiki)
|
||||
|
||||
### Classes
|
||||
* [Client](https://git.end-play.xyz/profitroll/PythonRMV/wiki/Client)
|
||||
## Classes
|
||||
|
||||
### Methods
|
||||
* [board_arrival](https://git.end-play.xyz/profitroll/PythonRMV/wiki/board_arrival)
|
||||
* [board_departure](https://git.end-play.xyz/profitroll/PythonRMV/wiki/board_departure)
|
||||
* [him_search](https://git.end-play.xyz/profitroll/PythonRMV/wiki/him_search)
|
||||
* [journey_detail](https://git.end-play.xyz/profitroll/PythonRMV/wiki/journey_detail)
|
||||
* [stop_by_coords](https://git.end-play.xyz/profitroll/PythonRMV/wiki/stop_by_coords)
|
||||
* [stop_by_id](https://git.end-play.xyz/profitroll/PythonRMV/wiki/stop_by_id)
|
||||
* [stop_by_name](https://git.end-play.xyz/profitroll/PythonRMV/wiki/stop_by_name)
|
||||
* [trip_find](https://git.end-play.xyz/profitroll/PythonRMV/wiki/trip_find)
|
||||
* [trip_recon](https://git.end-play.xyz/profitroll/PythonRMV/wiki/trip_recon)
|
||||
* [Client](https://git.end-play.xyz/profitroll/PythonRMV/wiki/classes.Client)
|
||||
|
||||
## Methods
|
||||
|
||||
* [board_arrival](https://git.end-play.xyz/profitroll/PythonRMV/wiki/classes.Client.board_arrival)
|
||||
* [board_departure](https://git.end-play.xyz/profitroll/PythonRMV/wiki/classes.Client.board_departure)
|
||||
* [him_search](https://git.end-play.xyz/profitroll/PythonRMV/wiki/classes.Client.him_search)
|
||||
* [journey_detail](https://git.end-play.xyz/profitroll/PythonRMV/wiki/classes.Client.journey_detail)
|
||||
* [stop_by_coords](https://git.end-play.xyz/profitroll/PythonRMV/wiki/classes.Client.stop_by_coords)
|
||||
* [stop_by_id](https://git.end-play.xyz/profitroll/PythonRMV/wiki/classes.Client.stop_by_id)
|
||||
* [stop_by_name](https://git.end-play.xyz/profitroll/PythonRMV/wiki/classes.Client.stop_by_name)
|
||||
* [trip_find](https://git.end-play.xyz/profitroll/PythonRMV/wiki/classes.Client.trip_find)
|
||||
* [trip_recon](https://git.end-play.xyz/profitroll/PythonRMV/wiki/classes.Client.trip_recon)
|
||||
|
||||
## Raw functions
|
||||
|
||||
* [List of raw functions](https://git.end-play.xyz/profitroll/PythonRMV/wiki/Raw-Functions)
|
||||
|
1
wiki/classes/BoardArrival.md
Normal file
1
wiki/classes/BoardArrival.md
Normal file
@ -0,0 +1 @@
|
||||
Docs are not available yet. Please, use the linting in your IDE until the documentation is there.
|
1
wiki/classes/BoardDeparture.md
Normal file
1
wiki/classes/BoardDeparture.md
Normal file
@ -0,0 +1 @@
|
||||
Docs are not available yet. Please, use the linting in your IDE until the documentation is there.
|
1
wiki/classes/Channel.md
Normal file
1
wiki/classes/Channel.md
Normal file
@ -0,0 +1 @@
|
||||
Docs are not available yet. Please, use the linting in your IDE until the documentation is there.
|
@ -1,5 +1,6 @@
|
||||
# PythonRMV Client
|
||||
You are now viewing the main class of the module, its heart. The main Client class, all available normal methods can be found here.
|
||||
# Client
|
||||
|
||||
You are now viewing the main class of the module, all available higher-level methods can be found here.
|
||||
|
||||
This page is about the Client class, which exposes high-level methods for an easy access to the API.
|
||||
|
||||
@ -11,14 +12,14 @@ client = Client("SampleAPIKey")
|
||||
print(client.stop_by_id("A=1@O=Offenbach (Main)-Zentrum Marktplatz\/Frankf. Straße@X=8764456@Y=50105181@U=80@L=3002510@"))
|
||||
```
|
||||
|
||||
# Details
|
||||
|
||||
## `class pyrmv.Client`
|
||||
## Details
|
||||
|
||||
### Parameters
|
||||
|
||||
* access_key (`str`) – Access ID for identifying the requesting client. Get your key on [RMV website](https://opendata.rmv.de/site/start.html).
|
||||
|
||||
### Methods:
|
||||
### Methods
|
||||
|
||||
* [board_arrival](https://git.end-play.xyz/profitroll/PythonRMV/wiki/board_arrival) -> `BoardArrival`
|
||||
* [board_departure](https://git.end-play.xyz/profitroll/PythonRMV/wiki/board_departure) -> `BoardDeparture`
|
||||
* [him_search](https://git.end-play.xyz/profitroll/PythonRMV/wiki/him_search) -> `List[Message]`
|
1
wiki/classes/Client/methods/Client.board_arrival.md
Normal file
1
wiki/classes/Client/methods/Client.board_arrival.md
Normal file
@ -0,0 +1 @@
|
||||
Docs are not available yet. Please, use the linting in your IDE until the documentation is there.
|
1
wiki/classes/Client/methods/Client.board_departure.md
Normal file
1
wiki/classes/Client/methods/Client.board_departure.md
Normal file
@ -0,0 +1 @@
|
||||
Docs are not available yet. Please, use the linting in your IDE until the documentation is there.
|
1
wiki/classes/Client/methods/Client.him_search.md
Normal file
1
wiki/classes/Client/methods/Client.him_search.md
Normal file
@ -0,0 +1 @@
|
||||
Docs are not available yet. Please, use the linting in your IDE until the documentation is there.
|
1
wiki/classes/Client/methods/Client.journey_detail.md
Normal file
1
wiki/classes/Client/methods/Client.journey_detail.md
Normal file
@ -0,0 +1 @@
|
||||
Docs are not available yet. Please, use the linting in your IDE until the documentation is there.
|
1
wiki/classes/Client/methods/Client.stop_by_coords.md
Normal file
1
wiki/classes/Client/methods/Client.stop_by_coords.md
Normal file
@ -0,0 +1 @@
|
||||
Docs are not available yet. Please, use the linting in your IDE until the documentation is there.
|
1
wiki/classes/Client/methods/Client.stop_by_id.md
Normal file
1
wiki/classes/Client/methods/Client.stop_by_id.md
Normal file
@ -0,0 +1 @@
|
||||
Docs are not available yet. Please, use the linting in your IDE until the documentation is there.
|
1
wiki/classes/Client/methods/Client.stop_by_name.md
Normal file
1
wiki/classes/Client/methods/Client.stop_by_name.md
Normal file
@ -0,0 +1 @@
|
||||
Docs are not available yet. Please, use the linting in your IDE until the documentation is there.
|
1
wiki/classes/Client/methods/Client.trip_find.md
Normal file
1
wiki/classes/Client/methods/Client.trip_find.md
Normal file
@ -0,0 +1 @@
|
||||
Docs are not available yet. Please, use the linting in your IDE until the documentation is there.
|
1
wiki/classes/Client/methods/Client.trip_recon.md
Normal file
1
wiki/classes/Client/methods/Client.trip_recon.md
Normal file
@ -0,0 +1 @@
|
||||
Docs are not available yet. Please, use the linting in your IDE until the documentation is there.
|
1
wiki/classes/Gis.md
Normal file
1
wiki/classes/Gis.md
Normal file
@ -0,0 +1 @@
|
||||
Docs are not available yet. Please, use the linting in your IDE until the documentation is there.
|
1
wiki/classes/Journey.md
Normal file
1
wiki/classes/Journey.md
Normal file
@ -0,0 +1 @@
|
||||
Docs are not available yet. Please, use the linting in your IDE until the documentation is there.
|
1
wiki/classes/Leg.md
Normal file
1
wiki/classes/Leg.md
Normal file
@ -0,0 +1 @@
|
||||
Docs are not available yet. Please, use the linting in your IDE until the documentation is there.
|
1
wiki/classes/LineArrival.md
Normal file
1
wiki/classes/LineArrival.md
Normal file
@ -0,0 +1 @@
|
||||
Docs are not available yet. Please, use the linting in your IDE until the documentation is there.
|
1
wiki/classes/LineDeparture.md
Normal file
1
wiki/classes/LineDeparture.md
Normal file
@ -0,0 +1 @@
|
||||
Docs are not available yet. Please, use the linting in your IDE until the documentation is there.
|
1
wiki/classes/Message.md
Normal file
1
wiki/classes/Message.md
Normal file
@ -0,0 +1 @@
|
||||
Docs are not available yet. Please, use the linting in your IDE until the documentation is there.
|
1
wiki/classes/Stop.md
Normal file
1
wiki/classes/Stop.md
Normal file
@ -0,0 +1 @@
|
||||
Docs are not available yet. Please, use the linting in your IDE until the documentation is there.
|
1
wiki/classes/StopTrip.md
Normal file
1
wiki/classes/StopTrip.md
Normal file
@ -0,0 +1 @@
|
||||
Docs are not available yet. Please, use the linting in your IDE until the documentation is there.
|
1
wiki/classes/Ticket.md
Normal file
1
wiki/classes/Ticket.md
Normal file
@ -0,0 +1 @@
|
||||
Class is not available yet. Documentation will appear here after the class is finished.
|
1
wiki/classes/Trip.md
Normal file
1
wiki/classes/Trip.md
Normal file
@ -0,0 +1 @@
|
||||
Docs are not available yet. Please, use the linting in your IDE until the documentation is there.
|
1
wiki/classes/Url.md
Normal file
1
wiki/classes/Url.md
Normal file
@ -0,0 +1 @@
|
||||
Docs are not available yet. Please, use the linting in your IDE until the documentation is there.
|
Loading…
Reference in New Issue
Block a user