The next "Guess Who" speaker revealed for our 20th anniversary! 🎉
Meet this #SoftwareArchitect at #PyTexasConference2026 & learn from @ProsperousHeart on how to make interactive #python environments in your browser 👀
Grab your ticket TODAY: https://www.pytexas.org/2026 💛
#py5 #Processing #Python #CreativeCoding

Handy thing I just spotted coming to Python 3.15:
"The -W option and the PYTHONWARNINGS environment variable can now specify regular expressions instead of literal strings to match the warning message and the module name, if the corresponding field starts and ends with a forward slash (/).
"(Contributed by Serhiy Storchaka in gh-134716.)"
https://docs.python.org/3.15/whatsnew/3.15.html#other-language-changes
https://github.com/python/cpython/issues/134716
#Python #Python315 #regex #ComingSoon
I need some help packaging a python module that I built. It references a few different python files, and .csv within the folder structure, and searching leads me to examples/tutorials that are either too simple, or way too complex. I can't find anything bridging the gap.
Any blogs, courses, tutorial, or even as a last resort youtube videos, that may help me out? #python #packaging #flit #setuptools #hatchling
The project that I'm trying to package is here - https://git.jmkengineering.com/JMK_Engineering_Inc/JEPL/src/branch/main/jepl
Tired of super-long #Python #Pandas backtraces in Jupyter or IPython? Use the %xmode magic method:
%xmode Minimal
Now you just see the error, not 50 lines of library internals.
You can also set it to Plain, Context, or Verbose.

Does anyone in my Django world use Scalingo for hosting? I hadn't heard of it until today, but they've been around for over a decade!
It seems like every time Heroku comes closer to actually closing its doors, we learn about new hosting options.
PictoBlox mezcla bloques y #Python para llevar tu programación creativa a otro nivel: modelos de #IA, proyectos XR (AR/VR) y #robótica en un mismo entorno 🤖✨
Ideal para aprender creando.
➡️ https://www.softandapps.info/2026/02/07/programacion-creativa-lo-que-hace-pictoblox-con-ia-y-robots/

Have you ever seen the typing.overload decorator in the wild and wondered what it's actually for?
I wrote a short blog post explaining the problem it solves and how to use it in practice. 🐍
https://borutzki.github.io/2026/02/07/how-to-use-overloaded-signatures-in-python.html
#Python #programming #DailyPythonista

I finally was able to release DukPy 0.5.1 which introduced support for Python 3.13 and Python 3.14
https://github.com/amol-/dukpy
A few new people have started using DukPy for their projects and support for recent Python was the most frequent complain I was receiving 😅
Even more surprisingly, I started migrating the Javascript engine to a more modern one with ES5 and ES6 support, which is something I wanted to do for more than a year but never had the time to get to
Git-хуки, которые не дают коммитить плохой код
Здравствуйте, коллеги программисты! Большинство фейлов в CI — это мелочи: забытый console.log , форматирование, линт, сломанный импорт, файл без теста. Такие ошибки не должны доезжать до сборки или код-ревью. Git-хуки позволяют запускать проверки прямо во время git commit и блокировать коммит, если были обнаружены нарушения. В прошлой статье я рассказывал про скрипты, которые я использую для проверки качества кода в PHP/Laravel. В этой статье я хочу рассказать о скриптах для JavaScript/TypeScript и Python — линтинг, форматирование, тесты, статический анализ и проверка наличия тестов. Все скрипты описанные в статье находятся здесь - https://github.com/prog-time/git-hooks
https://habr.com/ru/articles/993870/
#линтер #git_hooks #javascript #python #eslint #prettier #tsc #vitest #mypy #pytest
Is there a way with #Python types to accept an Iterable, but only ones that won't be consumed by iteration? So set, list, dict are fine, but generators and files are not? I suspect not.
Crypto Orderbook или Биржевой стакан на криптобирже: взгляд изнутри, часть 1
Как устроены биржи? Откуда берется рыночная цена и чем лимитный ордер отличается от рыночного? Что такое стакан, спред, bid и offer? Разберемся на Python
https://habr.com/ru/articles/993864/
#Рынок #криптовалюта #биржа #ордер #python