Python wheels for GStreamer!
New Centricular devlog post by Nirbheek Chauhan:
https://centricular.com/devlog/2026-02/Python-Wheels/
#gstreamer #python #windows #macos #multimedia #streaming

I created a completely new #XML transformation language and it is completely AI slop but it has reference implementations in #Python and #Rust 😅 ..and it has already a Version 2.0 specification...and now throw the stones at me, #XML people

RE: https://fosstodon.org/@paulox/116102884603308581
A++ content. I was in a call with @mkennedy and @pythonbynight this week, where this topic came up again.
We looked, and I thought Django's package size was 200M bigger than it actually is. Django is only 10.9 MB compressed, which is within ~1 MB of SQLAlchemy, which is kind of impressive to think about.
So running the Django ORM doesn't quite have the same mental tax as I have assumed all of these years.
When installing dependencies, formatting code, linting it, type-checking it, and building docs with #Poetry or #PDM, #Black, #Flake8, #Mypy and #MkDocs would previously take from 2min to several more, it now takes less than 15 seconds for the whole thing, thanks to #uv, #Ruff, #ty and #Zensical.
This is for 5 #Python versions (3.10 to 3.15).
The DX got much better 🥰
🎉 litestar-docs-l10n is published!
🚀 Preview:
https://projects.localizethedocs.org/litestar-docs-l10n
🌐 Crowdin:
https://localizethedocs.crowdin.com/litestar-docs-l10n
🐙 GitHub:
https://github.com/localizethedocs/litestar-docs-l10n
#Crowdin #GitHub #Sphinx #Python #Litestar #Web #ASGI
RE: https://mastodon.online/@neuroinformatics/116103259117436569
Want to spend this summer improving open-source tools for neuroscience 🧠📈 and animal behaviour 🐭🐒? Apply to work with us on @brainglobe , movement and others.
We particularly welcome researchers who want to sharpen their software dev skills and contribute to the open-source ecosystem.
See https://neuroinformatics.dev/get-involved/gsoc/
#neuroscience #animalbehaviour #Python
Solve the python quiz question ? What is the output?
Give and in the comments
#shaharyarranjah1
#developer #Tech #SoftwareEngineer #pythonprogramming #python

Comparación de frenado ideal contra Fatiga térmica
Frenar es convertir energía cinética en calor
Ese calor debe disiparse en los discos de freno
Si los frenos se calientan demasiado pierden su capacidad de fricción
#python #Movimiento Accidentes Distancia #Autos
@techsimplified Whisper is exactly the next topic to pick up. Hopefully I dive into it this weekend.
So you contribute into Genie 007? I took a look at it when you suggested it, and looked promising 🙂 Do you have a first hand link to an example for #python?
My requirements are offline + multilanguage + small enough to run inside a #RaspberryPi5 😉
The first release of Python was in February 1991, "Python can be used instead of shell, Awk or Perl scripts, to write prototypes of real applications, or as an extension language of large systems, you name it" #python #programming #language #OnThisDay https://raw.githubusercontent.com/python/cpython/master/Misc/HISTORY https://www.tuhs.org/Usenet/alt.sources/1991-February/001749.html
Python Tip: zip() for Parallel Iteration
names = ['Alice', 'Bob']
scores = [95, 87]
for name, score in zip(names, scores):
print(f'{name}: {score}')
zip() iterates multiple sequences in parallel. Use zip_longest() if sequences have different...
https://raccoonette.gumroad.com/l/Python-for-Beginners-From-Zero-to-Your-First-Projects
#Python #CodingTips #Programming
Python Tip: textwrap.dedent
from textwrap import dedent
sql = dedent('''
SELECT name, age
FROM users
WHERE active = true
''')
# No leading whitespace!
dedent() strips common leading whitespace from multiline strings. Clean embedded SQL/HTML/templates.
https://raccoonette.gumroad.com/l/Python-for-Beginners-From-Zero-to-Your-First-Projects
#Python #CodingTips #Programming