Metadata-Version: 2.1
Name: kermout-strips-api
Version: 0.0.4
Summary: Remotely interact with Kermout's Strips System
Home-page: https://github.com/RazerMoon/Kermout_Strips_API
Author: RazerMoon
Author-email: rasync@rasync.xyz
License: UNKNOWN
Project-URL: Documentation, https://github.com/RazerMoon/Kermout_Strips_API/wiki
Project-URL: Source Code, https://github.com/RazerMoon/Kermout_Strips_API
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: requests
Requires-Dist: bs4
Requires-Dist: prettytable
Requires-Dist: lxml

# fsATC Kermout Strips API ![PyPI](https://img.shields.io/pypi/v/kermout-strips-api) ![Build Status](https://img.shields.io/badge/build-passing-brightgreen) ![License](https://img.shields.io/badge/license-MIT-red) ![Python version](https://img.shields.io/badge/Python-latest-blue)

Used to interact with Kermout's fsATC Strips System remotely. Here it is on [PyPI](https://pypi.org/project/kermout-strips-api/)!.

![Getting the plan](.media/plan.gif)

## How do I get it?

Install using pip or check out the release page!

```python
pip install kermout-strips-api
```

Check out the tests for an example of how it works!

## Typical usage

```python
from kermout_strips_api import Plan

plan = {
    'Callsign': 'UAL256',
    'Aircraft': 'B737',
    'Flight_Rules': 'IFR',
    'Departure': 'KSAN',
    'Arrival': 'KJFK',
    'Altitude': '5000',
    'Routes': 'DCT GPS',
    'remarks': 'bout to go vertical',
}

s = Plan(plan)

s.filePlan()
s.startLoop()

inp = input("Stop?\n")
print("")

s.stopLoop()

s.deletePlan()
```


