In this tutorial, you'll learn how to use the Python standard REPL (Read-Eval-Print Loop) to run your code interactively. This tool will allow you to test new ideas, explore and experiment with new tools and libraries, refactor and debug your code, try out examples, and more.| realpython.com
In this tutorial, you'll explore the various ways of interacting with Python. You'll learn about the REPL for quick testing and running scripts, as well as how to work with IDEs, Jupyter Notebooks, and online interpreters.| realpython.com
This page contains a getting started guide for Automation API.| pulumi
execute binaries from Python packages in isolated environments| pipx.pypa.io
In this step-by-step tutorial, you'll learn the basics of Python programming with the help of a simple and interactive Python library called turtle. If you're a beginner to Python, then this tutorial will definitely help you on your journey as you take your first steps into the world of programming.| realpython.com
I love decoupling. This makes the project maintaining easier. We have 2 main ways to do it: Git submodules. This is a good conception but sometimes very confusable. Also, you must commit updates in parent project for each submodule changing. Packaging. I think this solution is better because you already use many packages in your project. You can easily package your project and explain this concept to any junior. This article about creating python package without pain.| blog.orsinium.dev
In this tutorial, you'll learn how to use a Python virtual environment to manage your Python projects. You'll also gain a deep understanding of the structure of virtual environments created with the venv module, as well as the rationale behind using virtual environments.| realpython.com
How to make sure Django is working before you deploy it| Matt Segal Dev
How to set up all the non-Django crap that you need to deploy| Matt Segal Dev