#1 OT/ICS CYBERSECURITY TRAINING AND GEN AI TRAINING IN DELHI NCR AND IN INDIA
#iOSDevelopment #PythonProgramming #LearnToCode #CodeNewbie #Swift #Python#DataScience #SoftwareDeveloper #TechIndia #iOSvsPython
visit-www.theevolvedge.com
mail- info@theevolvedge.com
ph no :-+917982403420
+919311805027

Anthropic investe 1,5 milioni nella Python Software Foundation per potenziare la sicurezza di CPython e PyPI. Una collaborazione strategica che cambierà il futuro di Python. #Python #Anthropic
✍️ New post introducing tprof, a new targeting profiler for Python 3.12+ that measures only specified functions.
Use tprof to measure the impact of a few functions without adding overhead to the whole program.
https://adamj.eu/tech/2026/01/14/python-introducing-tprof/
When you create post install script, witch language do you use ?
And why (comment)
#linux #foss #python #bash #install #postinstall #oss
Как я перестал слушать «Unknown Artist — Track 01» и написал свой распознаватель музыки
12 000 MP3 без тегов, 15 лет прокрастинации, один выходной на код. Асинхронный распознаватель на Python + Shazam: как обойти rate limiting, починить кривые кодировки и не съесть всю память. Код открыт.
https://habr.com/ru/articles/985320/
#музыка #распознавание_музыки #python #песочница #аудио #diy
Also in #Python, can anyone explain structured concurrency beyond "use task groups"?
Because I just got hit with "The host task is treated as a member of the task group. ... these semantics are well established by now." and that sounds utterly bizarre.
Alguém conhece um bom tutorial de #RAG que não use o #ChromaDB como banco vetorial? O desgraçado não está funcionando no #Python 3.10 ou maior graças ao #Pylance
New #pythonorama page just dropped.
https://github.com/alainkaegi/pythonorama/blob/main/software_development/teamwork.md
Linus Torvalds hat ein #Python-Audiotool mit #VibeCoding entwickelt, bleibt jedoch skeptisch gegenüber seinem Einsatz bei ernsthaften Projekten wie dem #Linux-Kernel. Sein Hobbyprogramm simuliert Gitarrenpedal-Effekte und wurde mithilfe von #KI erstellt. Für Linux-Projekte lehnt er Vibe Coding jedoch ab. https://www.heise.de/news/Linus-Torvalds-wird-zum-Python-Vibe-Coder-11140648.html?seite=all
Well then, I'm a #Python Triager now.. 🙂 Thanks Petr and Łukasz for inviting me! github.com/python/core-...

Well then, I'm a #Python Triager now.. 🙂 Thanks Petr and Łukasz for inviting me! github.com/python/core-...

Ok, I got a #Python #HTTPX problem.
I have a few custom httpx.Auth implementations, but I want them to pull from some common flows--namely GitHub Actions get-an-OIDC.
In the standard form, you can just use `yield from`, and then requests and responses get shuffled around correctly, and you can just be like `token = yield from do_github()`
but then I need to do non-http async things, and it all gets messy.
because async generator can't use `yield from`, and all i've got is manual pumping.