A web application to display and analyze aircraft disaster data, regarding the history of airplane crashes throughout the world, from 1928 to 2019. This includes flights made by commercial passenger airlines, cargo freights, military and private flights, from assorted countries.
In Python, made using Flask, SQLite and Bootstrap5, and it uses data from a Kaggle dataset.
- / : root directory of the project.
- /sql : SQL code files for creating and populating data structures.
- /static : all static assets, such as Javascript and CSS files.
- /templates : templates for the views using mainly HTML and Jinja.
Made in Python, it uses Flask microframework as the web server gateway interface (WSGI), with SQLite database. It uses Jinja, HTML, JavaScript, and is styled with CSS (Bootstrap 5). For more details, see Dependencies.
- Python (3.9.18)
- Flask
- SQLite
- Bootstrap
Web framework used was Flask (3.0.2). Application uses Jinja (3.1.3) templating.
Styled with Bootstrap 5.
export FLASK_APP=app.py
flask run --port 5001
, to run on a different port, change the port number.