From 1db76a8ab0c23063c8fe742ac73f48c33711d3a1 Mon Sep 17 00:00:00 2001 From: altf4arnold Date: Wed, 20 Mar 2024 02:05:18 +0100 Subject: [PATCH] README and files --- README.md | 9 ++++++++- server.py => app.py | 0 2 files changed, 8 insertions(+), 1 deletion(-) rename server.py => app.py (100%) diff --git a/README.md b/README.md index a594b3d..7156b19 100644 --- a/README.md +++ b/README.md @@ -6,4 +6,11 @@ This program uses the API of Flightaware. Said API requires an API key. More info [here](https://www.flightaware.com/commercial/aeroapi) # Config.py : -The example file needs to be copied as config.py. There, you can configure the API key and airport that interests you. \ No newline at end of file +The example file needs to be copied as config.py. There, you can configure the API key and airport that interests you. + +# datapull.py : +This file will pull the data from flightaware's server and print it on the terminal + +# Flask : +To start flask, ``flask run`` +You can then go on ``https://127.0.0.1:5000`` \ No newline at end of file diff --git a/server.py b/app.py similarity index 100% rename from server.py rename to app.py