https://github.com/bbland1/flask-movie-list.git
A Python web app that uses the Flask framework and SQLite database for data persistence to store a users top 10 movies based on the entered rating out of 10. Utilized SQLAlchemy/SQL and Flask to practice decorators, routes, and database connectivity. Although not deployed, the project served as a valuable practice exercise for understanding web development concepts and building robust backend functionality. Strengthened skills in web development frameworks, database connectivity, and data persistence using Flask and SQLAlchemy.
Installing from the requirements.txt handles most of the requirements, but you will also need to make sure to have a The Movie DB developer account to access an API key to complete the searches.
shell
pip install -r requirements.txt
%%CODEBLOCK0%%shell
python -c 'import secrets; print(secrets.token_hex())'
%%CODEBLOCK1%%shell
flask db upgrade
%%CODEBLOCK2%%shell
flask run
``