Warning: Undefined array key 0 in /var/www/tgoop/function.php on line 65

Warning: Trying to access array offset on value of type null in /var/www/tgoop/function.php on line 65
- Telegram Web
Telegram Web
Fun with uv and PEP 723

The article demonstrates how combining the new Python package manager uv with PEP 723 allows you to write self-contained Python scripts that declare and manage their own dependencies using inline metadata, making one-off scripting much easier and more portable. It showcases practical examples, such as running scripts with uv run and creating executable scripts that fetch YouTube transcri...

https://www.cottongeeks.com/articles/2025-06-24-fun-with-uv-and-pep-723
Reading NFC Passport Chips in Linux

The article explains how to read all data, including biometrics, from an NFC passport chip on Linux using the pypassport tool, detailing the process of reconstructing the required MRZ (Machine Readable Zone) password from passport details and providing Python code for both MRZ generation and chip reading

https://shkspr.mobi/blog/2025/06/reading-nfc-passport-chips-in-linux/
Build a Podcast Discovery Web App in Pure Python

The video is a step-by-step tutorial on building a full-stack podcast discovery web app using only Python, leveraging the Reflex framework for both frontend and backend development. It demonstrates integrating user authentication with Clerk, database management with Postgres, and data validation with Pydantic, showing how modern Python tools can be combined to create interactive, product...

https://www.youtube.com/watch?v=9RUhp99J87c
It Seems I No Longer Use Python’s Dataclasses

The video explores whether Python’s built-in dataclasses are still useful in 2025, given the rise of tools like Pydantic, FastAPI, and SQLAlchemy, concluding that most production code now relies on specialized data structures from these libraries rather than standard dataclasses. However, the presenter still finds dataclasses valuable for rapid prototyping and domain modeling, as they of...

https://www.youtube.com/watch?v=NRIgLNzmnYY
jdepoix / youtube-transcript-api

This is a python API which allows you to get the transcript/subtitles for a given YouTube video. It also works for automatically generated subtitles and it does not require an API key nor a headless browser, like other selenium based solutions do!

https://github.com/jdepoix/youtube-transcript-api
Making a Simple HTTP Server with Asyncio Protocols

Learn how to build a fast, minimal HTTP server using asyncio.Protocol, complete with routing, parsing, and response handling from scratch!

https://jacobpadilla.com/articles/asyncio-protocols
Speed Up Django Queries with values() over only()

Optimizing Django performance? Use values() instead of only() when you only need specific fields, as it skips full model instantiation and avoids triggering deferred field lookups—boosting query efficiency. The article provides practical guidance on when to choose values() for lightweight data access.

https://johnnymetz.com/posts/django-values-over-only/
Application Logging in Python: Recipes for Observability

The guide explains how to build robust, production-grade logging in Python by moving beyond basic print statements to use the logging module’s loggers, handlers, formatters, and filters for structured, contextual, and queryable logs. It covers best practices like configuring loggers by module name, using YAML or dictConfig for centralized setup, and adopting JSON output for modern observ...

https://www.dash0.com/guides/logging-in-python
2025/07/13 10:40:50
Back to Top
HTML Embed Code: