Metadata-Version: 2.1
Name: flightplandb
Version: 0.3.1
Summary: Python wrapper for the Flight Plan Database API
Home-page: https://github.com/PH-KDX/flightplandb-py/
Author: PH-KDX
Author-email: smtp.python.email.sender@gmail.com
License: UNKNOWN
Project-URL: Documentation, https://flightplandb-py.readthedocs.io/
Project-URL: Issue tracker, https://github.com/PH-KDX/flightplandb-py/issues
Platform: UNKNOWN
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Operating System :: OS Independent
Classifier: Topic :: Internet
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Utilities
Classifier: Topic :: Games/Entertainment :: Simulation
Requires-Python: >=3.7.0
Description-Content-Type: text/markdown
Requires-Dist: requests (==2.25.1)
Requires-Dist: python-dateutil (==2.8.1)
Provides-Extra: dev
Requires-Dist: Sphinx (==4.0.0) ; extra == 'dev'
Requires-Dist: sphinx-rtd-theme (==0.5.2) ; extra == 'dev'

# FlightplanDB-py

## Code status
![Unittests and lint](https://github.com/PH-KDX/flightplandb-py/actions/workflows/test_and_lint.yml/badge.svg)

## Introduction
This is a Python 3 wrapper for the [Flight Plan Database API](https://flightplandatabase.com/dev/api). Flight Plan Database is a website for creating and sharing flight plans for use in flight simulation.

For more information on Flight Plan Database, see their excellent [About page](https://flightplandatabase.com/about).


## API
All the API commands can be called via the `flightplandb.FlightPlanDB` class.
It is organized into subsections as specified in the docs; i.e. `FlightPlanDB.plan` has all the plan API commands.

## Data Types
All datatypes can be found in `flightplandb.datatypes`.

## Exceptions
All exceptions can be found in `flightplandb.exceptions`.

## Documentation
The documentation for this project can be found on readthedocs.io [here](https://flightplandb-py.readthedocs.io/).


