Skip to content
This repository has been archived by the owner on Jun 30, 2020. It is now read-only.

Used to interact with Kermout's fsATC Strips System remotely.

License

Notifications You must be signed in to change notification settings

piotrpdev/Kermout_Strips_API

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

fsATC Kermout Strips API PyPI Build Status License Python version

Used to interact with Kermout's fsATC Strips System remotely. Here it is on PyPI!.

Getting the plan

How do I get it?

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!

Typical usage

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()