-
-
Notifications
You must be signed in to change notification settings - Fork 12
Learning Resources
Daniel Reeves edited this page Jun 7, 2020
·
2 revisions
This is an intermediate level Python project that makes heavy use of a lot of libraries that you may not be familiar with. Here are some resources for learning Python and those libraries.
- Transforming Code into Beautiful, Idiomatic Python - This is a great video that explains how to think about writing code Pythonically. Some of this is outdated, but a lot of the general idea still hold.
-
Flaskr Tutorial - The Flask documentation (and all the Pallets Project libraries for that matter) has excellent documentation. The Flaskr tutorial in particular is very good. You can see the source code for the final product here. A lot of the ideas in this tutorial are utilized in this repo.
-
Real Python - Flask by Example - Another great Flask tutorial. Like the Flaskr tutorial, we've incorporated some ideas from this tutorial.
-
Flask for Fun and Profit - Learn some tricks from the creator of Flask himself.
- Dunder Data Resources - This is a list of resources for learning data science toolkits in Python, although it's mostly centered around Pandas, which is a library we're using.