This page has a collection of web links that I visit often.
Those two books are freely available online. Check out the links below.
Automate The Boring Stuff with Python
Transforming Code into Beautiful, Idiomatic Python Code - Github Link
Transforming Code into Beautiful, Idiomatic Python - Youtube Video Link
Python Quick Reference by Data School - Excellent Summary
Python Built-ins Worth Learning - Good Resource by Trey Hunner
Here are some links on Python basics.
List Methods - in Section 5.1
Dict Methods - Section Mapping Types - dict
String Methods - List of String Methods on Python.org
File IO - Tutorial on dbader.org
Files Chapter - Think Python Book Chapter 14
Regex Module - Regular Expression Basics
Python Context Manager - Tutorial on dbader.org
Python Iterators - Tutorial on dbader.org
Python Generator - Tutorial on dbader.org
Python Class Into - Chapter from A Byte Of Python book
Python Glossary - On Python.org
Python Built-in Functions - On Python.org
Regex Module - Official Regex Reference
Those links are for people who already know the Python basics.
Python Decorators - Three articles by Miguel Grinberg
Python Metaclasses - Meta class intro (realpython.com)
Python Descriptors Demystified - Excellent doc
Python.org Descriptor Guide - One of the best Python articles - by Raymond Hettinger
Python Logging Howto - Official doc tutorials
Python Concurrency Intro - Nice intro to Python concurrency article
Python Threading Intro - Excellent realpython.com article
Python for Data Analysis, 3E - Excellent book on data analysis
Python 3 Module of the Week PyMOTW-3
The Python Tutorial on python.org
Jupyter Notebook Youtube Tutorial - Good Resource to Get Started by Rob Mulla
Official Flask Tutorial Source Code on Github
The Flask Mega-Tutorial by Miguel Grinberg
Flask Web Framework Book Source Code on Github
Flask Extension Flask-Bootstrap Source Code
Flask-Bootstrap still bundles with Bootstrap 3.X. Use Flask-BS4 instead. (4/4/2020)
Flask Extension Flask-BS4 Source Code
Flask Extension Flask-Moment Source Code
Flask Extension Flask-SQLAlchemy Documentaion
Flask Extension Flask-Migrate Documentation
Flask Extension Flask-Mail Documentation
Flask Extension Flask-Login Documentation
Flask Tutorial by Corey Schafer on Youtube
Flask Tutorial by Corey Schafer Source Code
Getting Started with WSGI - Best WSGI writing by Armin Ronacher
App and Request Contexts Basics - Patrick Kennedy’s excellent article
Flask Contexts Advanced - Detailed and advanced article
The Modern Javascript Tutorial Javascript.info - Best js tutorial
Javascript Moment (Momentjs) Date and Time Display Library
Front End Web Framework Bootstrap
HTML & CSS Is Hard - Web Book - Very good beginner resource
Pelican Python Source Code repo
Full Stack Python Pelican Tutorial
Pelican Resource Links on Full Stack Python
Markdown Basic Syntax on Markdownguid.com
reStructuredText Documentation
reStructuredText Cheatsheet on Github
Sphinx - Python Documentation Generator
reStructuredText Tutorial on devdungeon.com
docutils Documentation on readthedocs.io
An Intro to Git and Github for Beginners (Tutorial) by Meghan Nelson
Intro to Git and Github for Python Developers on Realpython.com
Git Tutorial Youtube Video by Corey Schafer
Git Command Reference on git-scm.com
Docker Curriculum - Very nice Docker tutorial.
Python datetime Module in PyMOTW-3