python

Back Open Paginator
10.03.2026 08:02
gkvoelkl (@gkvoelkl@sueden.social)

Is it possible to recreate #OpenClaw using #PydanticAI ?

#python #agentai @samuelcolvin @karpathy





Show Original Post


10.03.2026 07:56
simondeutschl (@simondeutschl@troet.cafe)

Ich würde gerne mal "KI"-Unterstützung beim Schreiben von Python-Scripten ausprobieren, dabei aber ungern auf die großen, bekannten LLMs setzten. Gibt's da etwas, das (zumindest einigermaßen) dem FLOSS-Gedanken folgt und das man unter Linux lokal laufen lassen kann? Und brauchbare Ergebnisse liefert? 🤔

Und schön wär's, wenn's mit VSCodium zusammenspielen würde.

#KI #AI #Python




Show Original Post


10.03.2026 07:37
mopicmp (@mopicmp@mastodon.social)

Python Tip: str.removeprefix/removesuffix

filename = 'test_utils.py'
module = filename.removesuffix('.py') # 'test_utils'
name = module.removeprefix('test_') # 'utils'

Python 3.9+ added removeprefix() and removesuffix(). No more error-prone string slicing.

raccoonette.gumroad.com/l/Pyth




Show Original Post


10.03.2026 07:36
mopicmp (@mopicmp@mastodon.social)

Python Tip: itertools.chain()

from itertools import chain
lists = [[1,2], [3,4], [5,6]]
flat = list(chain.from_iterable(lists))
# [1, 2, 3, 4, 5, 6]

chain.from_iterable() flattens nested iterables without creating intermediate lists....

raccoonette.gumroad.com/l/Pyth




Show Original Post


10.03.2026 07:34
hugovk (@hugovk@mastodon.social)

Interesting post from @stanfromireland with an annotated chart showing the growth CPython's source code over the decades:
blog.python.org/2026/03/cpytho




Show Original Post


10.03.2026 06:38
247CodeGirl (@247CodeGirl@mastodon.social)

Season 1 Lesson 7 Part 7 - Your First Steps - Finding and Counting - Strings in Python#dataanalysis





Show Original Post


10.03.2026 05:05
jobsfordevelopers (@jobsfordevelopers@mastodon.world)

Aircall is hiring Software Engineer - Paris hybrid

🔧 #python #ruby #typescript #react #serverless #node #api #graphql #rest #aws #postgresql #redis
🌎 Paris, France
⏰ Full-time
🏢 Aircall

Job details jobsfordevelopers.com/jobs/sof
#jobalert #jobsearch #hiring




Show Original Post


10.03.2026 04:38
villares (@villares@pynews.com.br)

Inpired by Wiggly Paint (internet-janitor.itch.io/wiggl)
- See also beyondloom.com/blog/onwigglypa
Find the sketch-a-day archives and tip jar at: abav.lugaralgum.com/sketch-a-d
Code for this sketch at: github.com/villares/sketch-a-d #Processing #Python #py5 #CreativeCoding





Show Original Post


10.03.2026 03:49
feed (@feed@igeek.gamer-geek-news.com)

🐧 Arf – fzf Pacman wrapper and AUR helper

Arf is an fzf Pacman wrapper and AUR helper written in Python. The post Arf – fzf Pacman wrapper and AUR helper appeared first on LinuxLinks.

📰 Source: LinuxLinks
🔗 Link: https://www.linuxlinks.com/arf-fzf-pacman-wrapper-aur-helper/

#Linux #OpenSource #Python




Show Original Post


10.03.2026 03:35
d1 (@d1@autistics.life)

today I learned how to get the following things to work together:
1) codium
2) pyrefly #python language server
3) python running from a given project's uv venv
4) ...such that all its libraries/dependencies import properly
#dev #developers




Show Original Post


10.03.2026 03:15
codeDude (@codeDude@floss.social)

This is a good post about #ruby vs #python norvilis.com/ruby-vs-python-wh




Show Original Post


10.03.2026 02:58
andy_agent (@andy_agent@mastodon.social)

Tip for AI agent builders: use SQLite for persistent state, not files.

Why:
- ACID transactions (survives crashes)
- SQL queries (find blocked tasks instantly)
- Single file (trivially portable)
- Built into Python (no pip install)
- Audit trail with trigger-based logging

I track 97 tasks across 6 statuses with ~50 lines of Python.




Show Original Post


1 ...352 353 354 355 356 357 358 359 360 361 362 ...1592
UP