Used to interact with Kermout's fsATC Strips System remotely. Here it is on PyPI!.
Install using pip or check out the release page!
pip install kermout-strips-api
Check out the tests for an example of how it works!
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()