Flight Checker
Flight Checker is a python module that calculates the time between two airport ICAOs.
This allows aviation fans to input two airport ICAOs, a speed (in knots) to calculate the time it would take for (the plane) to get from one ICAO to the other by the speed specified by the user.
***
**Requirements**
* Use Python 3.6 or higher
**Installation**
1. Install using Python's PIP manager:
pip install FlightChecker
2. In your python file import FlightChecker:
py
import FlightChecker
3. Now you can use the module:
py
from FlightChecker import FlightChecker as FC
FC.checkICAO("(icao)") Checks whether the icao exists and if it does, provided the city and the name of the airport
FC.checkFlight("(plane)", (plane's speed in knots), "(departure icao)", "(arrival icao)")
***
Please leave feedback!