python

Back Open Paginator
03.03.2026 22:09
davidvujic (@davidvujic@mastodon.nu)

I have a new repo for my "agentic" setup.

The purpose is to keep things simple, easy to understand and being concise. I'm not a huge fan of massive markdown files.

I have added some agent skills that fit my style of coding, leaning toward functional programming.

My favorite tool for these kind of things is Eca (Editor Code Assistant), and the repo is named "my eca config" but it's (almost) favorite-tool agnostic:

github.com/DavidVujic/my-eca-c

#python #ai #llm #agenticengineering #claude #eca




Show Original Post


03.03.2026 21:54
davidvujic (@davidvujic@mastodon.nu)

New milestone for the Python tools for the Polylith project:

For the first time ever, the CLI has more monthly downloads than the Poetry plugin. In total 140K downloads per month 🤯 😍

I am so happy that this Open Source project has reached so many teams out there, with its Developer (and Agent) friendly setup.

#python #polylith #monorepo #softwarearchitecture

github.com/DavidVujic/python-p




Show Original Post


03.03.2026 21:43
david_bardos (@david_bardos@mementomori.social)

I had a weird dream. It was about #RobotFramework and #Trump. I laughed so hard when I woke up. 😂

🌐 blog.gridranger.dev/i-dream-of/

#blog #post #indieweb #python




Show Original Post


03.03.2026 21:35
feed (@feed@feedsin.space)

Python 3.12.13

Release date: 2026-03-03 13:01:42+00:00

python




Show Original Post


03.03.2026 21:22
habr (@habr@zhub.link)

Знакомьтесь, Эндрю Кучлинг (цикл заметок о выдающихся питонистах)

Замысел в том, чтобы написать цикл о 10 программистах, чьи имена не особо примелькались, но чьи заслуги невозможно переоценить. Начну я этот цикл с Эндрю Кучлинга (A.M. Kuchling) . Я всегда знал его как автора официального туториала по регуляркам в питоне, пожалуй, лучшего по теме. Но масштаб этого человека куда больше.

habr.com/ru/articles/1006200/

#python #pythonic #история #Эндрю_Кучлинг #питонисты




Show Original Post


03.03.2026 20:45
r (@r@fed.brid.gy)

Release candidate 10.8.2.rc2 of passagemath, the comprehensive #OpenSource #Mathematics system in #Python, the pip-installable modularized fork of #SageMath. github.com/passagemath/...

Release passagemath-10.8.2.rc2...




Show Original Post


03.03.2026 19:57
mopicmp (@mopicmp@mastodon.social)

Python Tip: Exception Groups (Python 3.11)

try:
async with TaskGroup() as tg:
tg.create_task(fetch(url1))
tg.create_task(fetch(url2))
except* ValueError as eg:
for e in eg.exceptions:
handle(e)

Python 3.11 ExceptionGroups handle multiple concurrent errors. Essential for async code.

raccoonette.gumroad.com/l/Pyth




Show Original Post


03.03.2026 19:56
mopicmp (@mopicmp@mastodon.social)

Python Tip: operator.itemgetter for Sorting

from operator import itemgetter
students = [('Alice', 92), ('Bob', 87), ('Eve', 95)]
sorted(students, key=itemgetter(1), reverse=True)
# [('Eve', 95), ('Alice', 92), ('Bob', 87)]

itemgetter is faster than lambda and more readable for sorting by index or key.

raccoonette.gumroad.com/l/Pyth




Show Original Post


03.03.2026 19:45
lobsters (@lobsters@mastodon.social)

Deprecate confusing APIs like “os.path.commonprefix()” via @kngl lobste.rs/s/bry484
sethmlarson.dev/deprecate-conf




Show Original Post


03.03.2026 19:34
r (@r@fed.brid.gy)

Deprecate confusing APIs like “os.path.commonprefix()”

fed.brid.gy/r/https://sethmlar





Show Original Post


03.03.2026 18:53
jmcastagnetto (@jmcastagnetto@mastodon.social)

about (posit-dev.github.io/querychat/), it is simply amazing to get quickly a app that allows people to explore data using a chatbot interface. There are and implementations.




Show Original Post


03.03.2026 18:20
247CodeGirl (@247CodeGirl@mastodon.social)

Season 1 Lesson 6 Part 5 - Your First Steps - Decimal Formatting with - f String in Python





Show Original Post


1 ...388 389 390 391 392 393 394 395 396 397 398 ...1592
UP