How to build scrapers that don't break every time a CSS class changes.| substack.thewebscraping.club
A short tutorial explaining how to set up a static Markdown blog in Flask in just a few lines of Python.| James Harding
Python for Data Engineering helps build ETL pipelines, clean data, and scale workflows using libraries like Pandas, Airflow, and PySpark.| Prismetric
Preparing a consistent Python environment| www.qemu.org
The Zephyr Project is an open-source real-time operating system (RTOS) focused on embedded and IoT platforms. Zephyr is a Linux Foundation hosted ‘Collaboration Project’, and supports a wide array of devices and architectures. The Raspberry Pi Pico is a microprocessor board developed by Raspberry Pi and is based on their RP2040 chip. The RP2040 is …| www.thegoodpenguin.co.uk
Implement a web server on an ESP32-CAM module to capture and serve images and use the YOLO object detection system to classify objects.| Makerguides.com
In this tutorial I'm going to show you how to extend SQLAlchemy so that you can define database columns that are stored encrypted. In the solution I'm going to share, the columns that are designated…| blog.miguelgrinberg.com
One of my absolute favorite automations I have set up is the one that sends me a notification on workdays with an image displaying a Google Map with the traffic layer turned on. Thankfully I have several ways I can get from home to the office, but the main way along the interstate backs up very quickly if there’s an accident or other issue.\nI’ve been using Google Maps for a while, but this solution should work for any traffic map you can find that allows you to set the lat/long/zoom by U...| Random Musings
A guide to using uv to run Python scripts, including support for inline dependency metadata, reproducible scripts, and more.| docs.astral.sh
Whenever I publish something about my Python Docker workflows, I invariably get challenged about whether it makes sense to use virtual environments in Docker containers. As always, it’s a trade-off, and I err on the side of standards and predictability.| Hynek Schlawack
1. Installation¶| selenium-python.readthedocs.io
Learn how to build an image processing application with OpenCV and deploy it as a container image to AWS Lambda.| CircleCI
A fairly detailed guide on building and installing a gateware toolchain in a self-contained and repeatable way.| lottia notes
As part of the work on OpenSpartan Workshop I needed the capability to convert a Xbox gamertag into its immutable identifier - the Xbox user ID, also commonly known as the XUID. My plan was to add the option for someone to find all the matches where they played with a specific player.| den.dev
Learn how to automatically build, test, and deploy containerized PyTorch models to Herokuusing fast and efficient CI/CD.| CircleCI
Managing dependencies for multiple projects is a common challenge for developers, particularly in Python, where all dependencies are insta...| Earthly Blog
How to easily create automatic rich captions for your videos in DaVinci Resolve without having to pay for the Studio version or using third-party plugins.| den.dev
Every command-line tool included with Python. These can be run with python -m module_name.| www.pythonmorsels.com
One of my first TIL entries was about how you can imitate Node’s node_modules semantics in Python on UNIX-like operating systems. A lot has happened since then (to the better!) and it’s time for an update. direnv still rocks, though.| Hynek Schlawack
Discover the benefits of virtual environments and learn the six conda commands you need to know to get started!| Data School
Requirements for Installing Packages¶| packaging.python.org
Learn how to build and evaluate LLM-powered RAG applications in a CI/CD pipeline using LangChain, LangSmith, and CircleCI for faster, more scalable AI development.| CircleCI
requirements.txt is not good enough for managing Python dependencies; use Poetry instead| quanttype.net
Google Vision and Tesseract are both popular and powerful OCR tools, but they each have their weaknesses. In this lesson, you will learn how to combine the two to make the most of their individu...| programminghistorian.org
This module provides access to some variables used or maintained by the interpreter and to functions that interact strongly with the interpreter. It is always available. Unless explicitly noted oth...| Python documentation
Introduction: Python applications will often use packages and modules that don’t come as part of the standard library. Applications will sometimes need a specific version of a library, because the ...| Python documentation
Freedom is a state of mind| sqrtminusone.xyz
>>>, The default Python prompt of the interactive shell. Often seen for code examples which can be executed interactively in the interpreter.,,..., Can refer to:- The default Python prompt of the i...| Python documentation
Why Do You Need Different Python Versions? Why would you want to install another Python version than the one your system already ships with? Well, the default Python version that is bundled with your system is usually way too old and might not have what you need. For instance, Python 3.11 is now 10~60% faster than 3.10 which is a huge improvement and can improve your applications and scripts runtime.| thegraynode.io
Getting Started Guide| docs.zephyrproject.org
After needing to do a deep dive on the venv module (which I will explain later in this blog post as to why), I thought I would explain how virtual environments work to help demystify them. Why do virtual environments exist? Back in my the day, there was no concept| Tall, Snarky Canadian
Configuring Python Environments in Visual Studio Code| code.visualstudio.com
Home Assistant is an open source home automation platform, written in Python. I have been running it for several years for various tasks. | baheyeldin.com
A storytelling guide to starting k8s| Adam Chalmers Programming Blog
We have more ways to manage dependencies in Python applications than ever. But how do they fare in production? Unfortunately this topic turned out to be quite polarizing and was at the center of a lot of heated debates. This is my attempt at an opinionated review through a DevOps lens.| Hynek Schlawack
Setting up Python to the point to be able install packages from PyPI can be annoying and time-intensive. Even worse are OS-provided installations that start throwing cryptic error messages. Especially desktops are prone to that but it’s possible to break the whole toolchain of a server by installing some shiny package you heard about on reddit.| Hynek Schlawack