Yoyo database migrations — yoyo-migrations 9.0.0.dev0 documentation

Python
Python Essentials for AI: A Practical Guide | MLExpert - Get Things Done with AI
The "Get Things Done with AI" Bootcamp is here to prepare you for the AI world with a comprehensive curriculum that covers everything from ML basics to LLMs and Agents.
3.12.3 Documentation
PEP 0 – Index of Python Enhancement Proposals (PEPs) | peps.python.org
Python Enhancement Proposals (PEPs)
SQLAlchemy Unified Tutorial — SQLAlchemy 2.0 Documentation
How to deploy a Flask Application on Ubuntu
This guide walks you through the steps to deploy a Flask application to a production environment running on a Linode.
PyFlo
The 10 Best Python Cheat Sheets for Quick Reference and Learning
Python is one of the widely used programming languages, especially in data science. With the emergence of technology and data science, Python usage has
Python Decorators: Explained (With Examples and Use Cases)
Getting started with python decorators? In this tutorial, we will learn about Python Decorators with the help of examples.
How to Parse Command-Line Arguments in Python
- Want to run Python scripts with command-line arguments? Learn how to run a Python script with options and arguments at the command line.
16 Useful Python One-Liners to Simplify Common Tasks
- Looking to write elegant and Pythonic code? Here's a list of useful Python one-liners to perform simple tasks.
Dockerizing Flask with Postgres, Gunicorn, and Nginx
This tutorial details how to configure Flask to run on Docker along with Postgres, Nginx, and Gunicorn.
Flask Boilerplate and Your Guide to Flask in 2023. With SQLAlchemy. / abstractkitchen.com
Flask-Backbone is my take to create an initial structure and a set of rules, so most of my flask projects are easy to support.
Awesome Python: find the best Python libraries
Hand-picked awesome Python libraries, with an emphasis on data and machine learning
Integrate swagger and model validation to flask APIs with flask-restx
Practical guides for getting things done using python with easy examples and videos
Setup python on Linux in Windows using WSL and VS Code
Practical guides for getting things done using python with easy examples and videos
Building a Flask API with APIFairy
This tutorial shows how to build a Flask API using APIFairy.
Docker Best Practices for Python Developers
This article looks at several best practices to make your Dockerfiles and images cleaner, leaner, and more secure.
Testing Flask Applications with Pytest
This article serves as a guide to testing Flask applications with pytest.
5 Tips To Learn Any New Python Library Faster - PyBites
It forces you to conceptually understand it. You'll get relatively quickly which is exactly the point ("oh this does not work in this scenario", "why is this
Logging HOWTO
Author, Vinay Sajip ,. Basic Logging Tutorial: Logging is a means of tracking events that happen when some software runs. The software’s developer adds logging call...
Logging Cookbook
Author, Vinay Sajip ,. This page contains a number of recipes related to logging, which have been found useful in the past. For links to tutorial and reference info...
logging.config — Logging configuration
Source code: Lib/logging/config.py Important: This page contains only reference information. For tutorials, please see Basic Tutorial, Advanced Tutorial, Logging Cookbook. This section describes th...
Ultimate Guide to Python Debugging
Even if you write clear and readable code, even if you cover your code with tests, even if you are very experienced developer, weird bugs will inevitab...
It's Time to Say Goodbye to These Obsolete Python Libraries
With every Python release, there are new modules being added and new and better ways of doing things get introduced. We all get used to using the good ...
Recipes and Tricks for Effective Structural Pattern Matching in Python
If you're a Python developer, then you're probably aware that match/case statement got introduc...
You Should Be Using Python's Walrus Operator - Here's Why
The assignment operator - or walrus operator as we all know it - is a feature that's been in Python for a while now (since 3.8), yet it's still ...
Python List Comprehensions Are More Powerful Than You Might Think
Python's list comprehensions (and generators) are an awesome feature that can greatly simplify your code. Most of the time however, we only use them to...
What is Python's "self" Argument, Anyway?
Every Python developer is familiar with the self argument, which is present in every* method declaration of every class. We...
Python CLI Tricks That Don't Require Any Code Whatsoever
Out-of-the-box, Python standard library ships with many great libraries some of which provide commandline interface (CLI), allowing us to do many cool ...