https://github.com/robinklaassen/osdc
OpenSky Data Collector - collects and stores flight data into InfluxDB
https://github.com/robinklaassen/osdc
influx influxdata influxdb opensky-api opensky-network python python3
Last synced: 2 months ago
JSON representation
OpenSky Data Collector - collects and stores flight data into InfluxDB
- Host: GitHub
- URL: https://github.com/robinklaassen/osdc
- Owner: robinklaassen
- License: mit
- Archived: true
- Created: 2019-06-30T12:52:39.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2019-06-30T15:19:15.000Z (almost 6 years ago)
- Last Synced: 2025-02-05T07:30:58.072Z (3 months ago)
- Topics: influx, influxdata, influxdb, opensky-api, opensky-network, python, python3
- Language: Python
- Size: 6.84 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# OpenSky Data Collector
The `osdc` Python package collects selected data from the
[Opensky API](https://opensky-network.org/apidoc/)
and stores it in an [Influx](https://www.influxdata.com/) database.## Installation
First install the `opensky_api` package by hand
(since it's not on PyPI and PEP 508 sucks for dependencies):```sh
pip install git+https://github.com/openskynetwork/opensky-api.git@master#egg=opensky_api&subdirectory=python
```Then install this package:
```sh
pip install .
```## Configuring and starting
Start the collector using default configuration:
```sh
python -m osdc
```To customize configuration, create a `config.yml` file and run:
```sh
python -m osdc --config config.yml
```Have a look at the `settings.py` file to see what can be configured.