For the final project, you’re making a new app of your choosing from scratch.
If you’re having trouble coming up with a topic, consider:
Find a fun API and base it on that.
Make an “About Me” site that’s all about you.
Make a portfolio website for one of your hobbies.
Make a blog about a topic you find interesting.
Make something you think would improve your life in some way.
Feel free to share resources and inspiration with your classmates!
Deliverables
You must have a Flask site running locally on your own machine.
You will work individually on this project, but feel free to share inspiration, resources, or cool datasets that you find with your classmates!
Requirements
Your assignment must include:
At least 3 working routes with associated views
Including at least one GET and one POST route
Data pulled from at least one API
Get creative! Tons of free APIs exist! Ask your instructor or classmates for ideas!
Have semantically clean HTML and CSS applied to a template - at least a small amount of styling.
Try to spend a little time styling your pages and making them look nice!
Core Python topics. At minimum:
Dictionaries or sets, or tuples.
**argsorkwargsor*kwargs.
Basic debugging, such as a try/except block, (only if necessary).
A class.
User input or reading from a file.
Comments, so another developer can easily see what your app does.
Bonus: Have extra time? Ask how to deploy a Flask site to a cloud service like Heroku! Or, try to follow the directions on this medium article.
Suggested Ways to Get Started
Begin with the end in mind. Know where you want to go by planning ahead, so you don’t waste time building things you don’t need.
Read the docs for whatever technologies or APIs you use. Most of the time, there is a tutorial that you can follow! This isn’t always the case, though, learning to read documentation is crucial to your success as a developer.
Write pseudocode before you write actual code. Thinking through the logic of something helps.