Coverage for fmc/__init__.py: 100%

5 statements  

« prev     ^ index     » next       coverage.py v7.8.1, created at 2025-05-23 08:53 +0000

1#!/usr/bin/env python3 

2 

3""" 

4Flight Map Creator (FMC) 

5 

6This Python 3.x module contains all the functions required to create a map of 

7the world with all of your flights overlaid and all of the countries that you 

8have visited shaded in too. 

9""" 

10 

11# Import sub-functions ... 

12from .coordinates_of_IATA import coordinates_of_IATA 

13from .coordinates_of_ICAO import coordinates_of_ICAO 

14from .country_of_IATA import country_of_IATA 

15from .country_of_ICAO import country_of_ICAO 

16from .run import run