NumPy as Synth Engine https://lobste.rs/s/v8agk2 #python
https://kennethreitz.org/essays/2026-03-29-numpy_as_synth_engine
Мы сделали лучший REST фреймворк для Django
Привет! Меня зовут Никита Соболев, я core-разработчик языка программирования CPython, а так же core-разработчик фреймворка Litestar, пакета django-stubs и множества других пакетов для Django. Сегодня я расскажу, как мы сделали самый быстрый и самый семантически корректный фреймворк для создания апишек на Джанго. Поговорим про конкурентов, покажу очень крутые интеграции, поделюсь своей философией и правилами, которые использовались для создания фреймоврка, ну накину на вентилятор для интереса. Если хотите похоливарить в коментах на тему того, какой фреймворк самый лучший и удобный – залетайте! Обсудим.
https://habr.com/ru/articles/1017036/
#python #django #asyncio #fastapi #sse
Any #Python function parameters after *args are keyword-only:
def myfunc(*args, k):
return f'{args=}, {k=}'
Want to give k a value? Use a keyword argument:
myfunc(10, 20, 30, k=100)
Don't need *args? Just use *, and k is keyword only:
def myfunc(*, k):
return f'{k=}'

🙄 Ah, yes, another #GitHub project promising to revolutionize #CAD with #Python, because what could go wrong with combining the reliability of CAD and the elegance of Python scripts? 🤔 Get ready for endless #debugging sessions as you attempt to "build" something that doesn't collapse under its own code spaghetti. 🍝
https://github.com/gumyr/build123d #CodeSpaghetti #Innovation #HackerNews #ngated
Build123d: A Python CAD programming library
https://github.com/gumyr/build123d
#HackerNews #Build123d #Python #CAD #programming #library #CAD #Python #programming #open-source #design
Build123d: A Python CAD programming library
https://github.com/gumyr/build123d
Scroll a scaled image in Python
https://rodstephensbooks.com/scroll_scaled_image.html
#Python #ImageProcessing #UserInterface

Cómo un fallo en una librería de #Python puede comprometer sistemas de #IA (CVE-2026-0848)
Generators in python
Generators return iterator objects in Python. Instead of using a return statement, it uses a yield statement to provide a list of results. The iterator object can then be used in a loop.
📖 Read more: https://sajalchoudhary.net/til/generators-in-python/
Happy Monday! ☕️ Here’s our weekly roundup of upcoming CFPs and events for #Rstats, #Python, and #OpenSource.
🔹 dbt Summit: Mar 31 www.getdbt.com/dbt-summit
🔹 EARL 2026: Mar 31 earl-conference.com
🔹 PyData Amsterdam: Apr 1 amsterdam.pydata.org
More details in the image! Spot any events we missed? 👇

Heute mal wieder:
Textdateien mit #python parsen, weil es die Daten nicht in einem strukturierten Dateiformat gibt.
Außerdem:
#regex ist toll! 😊
just dropped a new post about GhostIntel v2.5 👻
what's new: Web UI, email breach detection, 8 countries for phone OSINT, 129+ platforms, batch processing.
still zero API keys, 100% public data.
🔗 https://dev.to/ruyynn/ghostintel-v25-what-changed-since-i-first-posted-about-it-m3e
#OSINT #Python #InfoSec #OpenSource