A display for airport departures
Find a file
Arnold Dechamps cca2c80d44 revert e6ad3494d0
revert Adding npm to dependabot
2024-10-24 00:58:32 +00:00
.github revert e6ad3494d0 2024-10-24 00:58:32 +00:00
static Carousel done ! 2024-04-01 01:42:34 +02:00
templates Carousel done ! 2024-04-01 01:42:34 +02:00
.gitignore Add config.py to gitignore 2024-03-18 22:33:26 +01:00
app.py animation 2024-04-01 00:15:00 +02:00
config.example.py Basic webdesign done 2024-03-20 17:49:10 +01:00
datapull.py Basic webdesign done 2024-03-20 17:49:10 +01:00
License Update License 2024-10-24 00:58:05 +00:00
package.json base setup for tailwindcss 2024-03-20 16:08:34 +01:00
README.md putting little screenshot 2024-03-20 18:11:20 +01:00
requirements.in Bump certifi from 2024.6.2 to 2024.7.4 2024-07-06 02:33:14 +00:00
requirements.txt Bump certifi from 2024.6.2 to 2024.7.4 2024-07-06 02:33:14 +00:00
screenshot.png putting little screenshot 2024-03-20 18:11:20 +01:00
tailwind.config.js Basic webdesign done 2024-03-20 17:49:10 +01:00

flight-screen-info

Will end up being a little flask site that provides the departure schedule of whatever airport you choose (like they do in real airports) Alt screenshot of the flask app runing

API :

This program uses the API of Flightaware. Said API requires an API key. More info here

config.py :

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 :

This is where the web app runs.

To start flask, flask run You can then go on https://127.0.0.1:5000

Developers :

For the CSS, tailwind is used. To install the CSS bundler :

npm install -D tailwindcss

to update CSS files :

npx tailwindcss -i ./static/input.css -o ./static/style.css