Metadata-Version: 2.4
Name: onboardapis
Version: 2.1.0
Summary: A pure Python wrapper for the on-board APIs of many different transportation providers.
Author-email: Felix Zenk <felix.zenk@web.de>
License-Expression: MIT
Project-URL: Homepage, https://felix-zenk.github.io/onboardapis
Project-URL: Documentation, https://felix-zenk.github.io/onboardapis/
Project-URL: Repository, https://github.com/felix-zenk/onboardapis
Project-URL: Issues, https://github.com/felix-zenk/onboardapis/issues
Keywords: public-transport,train,api
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Utilities
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Typing :: Typed
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: annotated-types>=0.7.0
Requires-Dist: beautifulsoup4>=4.14.2
Requires-Dist: geopy>=2.4.1
Requires-Dist: gql[all]>=4.0.0
Requires-Dist: requests>=2.32.5
Requires-Dist: restfly>=1.5.1
Requires-Dist: PyYAML>=6.0.3
Provides-Extra: dev
Requires-Dist: build>=1.2.2.post1; extra == "dev"
Requires-Dist: flake8>=7.2.0; extra == "dev"
Requires-Dist: Flake8-pyproject>=1.2.3; extra == "dev"
Requires-Dist: pdoc>=15.0.4; extra == "dev"
Requires-Dist: pytest>=8.4.0; extra == "dev"
Requires-Dist: pytest-cov>=6.1.1; extra == "dev"
Dynamic: license-file

onboardapis
===

[![Python versions](https://img.shields.io/pypi/pyversions/onboardapis)](https://pypi.org/project/onboardapis)
[![PyPI version](https://badge.fury.io/py/onboardapis.svg)](https://pypi.org/project/onboardapis)
[![License](https://img.shields.io/github/license/felix-zenk/onboardapis)](https://github.com/felix-zenk/onboardapis/blob/main/LICENSE)  
[![Build package](https://github.com/felix-zenk/onboardapis/actions/workflows/build.yml/badge.svg)](https://github.com/felix-zenk/onboardapis/actions/workflows/build.yml)
[![Deploy documentation](https://github.com/felix-zenk/onboardapis/actions/workflows/docs.yml/badge.svg)](https://github.com/felix-zenk/onboardapis/actions/workflows/docs.yml)

## Description

*onboardapis* allows you to interact with different on-board APIs.
You can connect to the Wi-Fi of a supported transportation provider
and access information about your journey, the vehicle you are traveling in and much more.

---

## Installation

Install the latest stable version of onboardapis
from [PyPI](https://pypi.org/project/onboardapis)
using [pip](https://pip.pypa.io/en/stable/installation/):

```shell
$ python -m pip install onboardapis
```

[![Version](https://img.shields.io/pypi/v/onboardapis?label=%20)](https://pypi.org/project/onboardapis)

---

Install the latest development version of onboardapis
from [GitHub](https://github.com/felix-zenk/onboardapis)
using [pip](https://pip.pypa.io/en/stable/installation/):

```shell
$ python -m pip install git+https://github.com/felix-zenk/onboardapis.git
```

---

## Quickstart

To begin with development, you will need to know a few things first:

* What vehicle type do you want to use?
* Who operates the vehicle?
* What country is the operator from?

With this information you can get the necessary module from the package 
``onboardapis.<type>.<country>.<operator>`` and import the API class from it.
For more specific information on finding the API you are looking for,
see [Finding your API](#finding-your-api).

> **Example**: Let's say you want to use the on-board API called ICE Portal of Deutsche Bahn trains in Germany:
> ```python
> from onboardapis.train.de.db import ICEPortal
> ```

Every vehicle has an ``init``-method that needs to be called to initialize the connection to the API.
When using a vehicle as a context manager the ``init``-method will automatically be called.

```python
from onboardapis.train.de.db import ICEPortal
from onboardapis.units import kilometers, kilometers_per_hour

# init is automatically called
with ICEPortal() as train:
    print(
        f"Distance to {train.current_station.name}:",
        f"{kilometers(meters=train.calculate_distance(train.current_station)):.1f} km"
    )

# init has to be explicitly called
train = ICEPortal()
train.init()  # Explicit call to init method to initialize API connection

print(
    f"Travelling at {train.speed} m/s",
    f"({kilometers_per_hour(meters_per_second=train.speed):.2f} km/h)",
    f"with a delay of {train.delay.total_seconds():.0f} seconds"
)
```

And there you go!  
You can read more information about available attributes in the ``onboardapis.train.Train`` and ``onboardapis.mixins`` documentation
and the respective train's documentation.

> **Note**: As you may have noticed by now, the package always returns `datetime` or `timedelta` objects for time-based values
> and other values like distances, velocity, etc. in SI units,
> so you have to convert to other units if you want to use values different from the SI units.
> For convenience the ``onboardapis.units`` module provides functions to convert between units.
>
> The name of a conversion function is the unit that will be the result of the conversion.
> Different units can be passed to a conversion function as keywords.
> Keywords can be combined to return the sum of the input units.

---

## Documentation
[![GitHub-Pages](https://github.com/felix-zenk/onboardapis/actions/workflows/docs.yml/badge.svg)](https://felix-zenk.github.io/onboardapis/)

#### Access the documentation on [GitHub-Pages](https://felix-zenk.github.io/onboardapis/).


## Supported APIs

| API                   | [API features](#api-features) | Type  | Country      | Operator                                |
|-----------------------|-------------------------------|-------|--------------|-----------------------------------------|
| RailnetRegio          | basic, geo                    | train | at (Austria) | obb (Österreichische Bundesbahnen)      |
| ICEPortal             | online, vehicle, geo, journey | train | de (Germany) | db (Deutsche Bahn / DB AG)              |
| FlixTainment          | basic, geo                    | train | de (Germany) | flix (Flix Train GmbH)                  |
| MetronomCaptivePortal | online                        | train | de (Germany) | me (metronom Eisenbahngesellschaft mbH) |
| FlyStream             | basic, geo, basic-journey     | plane | de (Germany) | cfg (Condor Flugdienst GmbH)            |

## Experimental APIs

| API                     | [API features](#api-features) | Type  | Country             | Operator                     |
|-------------------------|-------------------------------|-------|---------------------|------------------------------|
| PortalINOUI             | basic, vehicle, geo, journey  | train | fr (France)         | sncf (SNCF Voyageurs)        |
| RegioGuide / ZugPortal  | basic, vehicle, geo, journey  | train | de (Germany)        | db (Deutsche Bahn / DB AG)   |
| PortaleRegionale        | basic, basic-journey          | train | it (Italy)          | ti (Trenitalia S.p.A.)       |
| SBahnHannover           | *online*\*, basic-journey     | train | de (Germany)        | tdh (Transdev Hannover GmbH) |
| České dráhy             | basic, geo                    | train | cz (Czech Republic) | cd (České dráhy s.a.)        |

    * Not supported yet.

## APIs in development

| API                     | [API features](#api-features) | Type  | Country             | Operator                     |
|-------------------------|-------------------------------|-------|---------------------|------------------------------|
| UnnamedWideroePortal    | basic, geo, basic-journey     | plane | no (Norway)         | wif (Widerøe's Flyveselskap) |
| UnnamedMarabuPortal     | basic, geo, basic-journey     | plane | ee (Estonia)        | mbu (Marabu Airlines OÜ)     |
| UnnamedSmartwingsPortal | basic, geo, basic-journey     | plane | cz (Czech Republic) | tvs (Smartwings a.s)         |
| ...                     |                               |       |                     |                              |

## Finding your API

##### 1. Determine the vehicle type: ``train``, ``plane``, ``bus``, ``ship``, ``other``.
##### 2. Look up the [ISO 3166-2 country code](https://en.wikipedia.org/wiki/ISO_3166-2#Current_codes) of the operators' country
##### 3. Operator code

The operator code is vehicle-type-specific. The following IDs are used:

| Vehicle type | Region | Register                                                    |
|--------------|--------|-------------------------------------------------------------|
| plane        | global | [ICAO](https://en.wikipedia.org/wiki/List_of_airline_codes) |
| train        | europe | [VKM](https://www.era.europa.eu/domains/registers/vkm_en)   |

---

Combine these three values to `onboardapis.<type>.<country>.<operator>`.
This is the module that contains the API.

> **Hint**: You can also get the module path by looking at [Supported APIs](#supported-apis)
> / [Experimental APIs](#experimental-apis) and taking the three values from there.

## API features

The API features define what information can be accessed through the API
and are a general indicator of the API's capabilities.  
Features can be combined.  
The current possible API features are:
- ``basic``: Basic information is available such as connection status to the API.
- ``online``: The API supplies the user with internet access, and the internet access can be enabled and disabled.
- ``vehicle``: The API supplies information about the vehicle such as the ID, line number, etc.
- ``geo``: The API supplies information about the current location, speed, etc. of the vehicle.
- ``basic-journey``: The API supplies basic journey information including the current station and the destination station.
- ``journey``: The API supplies detailed journey information including all the stations and possibly connecting services.
