Khám phá các Agentic Design Patterns (mẫu thiết kế tác tử) trong Python từ mã nguồn Codex của OpenAI! 🤖🐍 Dự án mã nguồn mở này cung cấp giải thích, ví dụ code, bài tập thực hành và cách Codex sử dụng các mẫu này (prompt chaining, tool orchestration,...). Thích hợp cho ai muốn kết nối lý thuyết và thực hành về AI agent.
#python #ai #machinelearning #agenticdesign #trituenantao #lậptrình
https://artvandelay.github.io/codex-agentic-patterns/
We are live on YouTube in 60 minutes. Join us and be part of the show with @mkennedy and Hugo Bowne-Anderson. #python #podcast
Topic: Building Data Science with Foundation LLM Models
https://www.youtube.com/watch?v=_LFdKjsKdPE
Lazy imports using wrapt https://lobste.rs/s/kkxjz8 #python
https://grahamdumpleton.me/posts/2025/10/lazy-imports-using-wrapt/
I have realized that using #uv, I don't actually know how to force it to use the released #Python 3.14 -- I don't even know where those settings are. That's not the end of the world, but I do kind of want to understand the moving parts there better. Does anyone in my follows know how to check that?
#Python 3.14 just dropped: the “π release.” 🥧
It adds template string literals, deferred annotations, and subinterpreters, plus ongoing work on the free-threaded build and an experimental JIT.
Congrats to all the contributors on this release! 🎉
→ socket.dev/blog/python-3-14-release
Python 3.14.0 is now available https://lobste.rs/s/zfwbni #programming #python #release
https://blog.python.org/2025/10/python-3140-final-is-here.html
I want to be able to create objects for #3dprinting where the top surface can have line art that I draw with a single line width, single layer height. Anyone have suggestions for how to create that?
#Blender? #FreeCad? #OpenSCAD? #Inkscape? #Python script?
Other suggestions?
Precios históricos Recope Costa Rica
#Python #Energy #Energia #CostaRica #Anzoategui #Lecheria Software Libre #SoftwareLibre
I made my first Ruff release today, where we celebrate the release of Python 3.14 🎉 by stabilizing support for new syntax, and updating the default/oldest supported Python version to 3.10. 🥂
It also includes my first “big” user facing feature for the formatter, which will now preserve all comments intermixed within multi-line “from import” statements, such as:
from x import (
a as # comment
b,
)
Some of these comments would have previously caused Ruff to *crash*, and now they will also have their positions correctly preserved when formatting, and better matches Black’s style for the same code.
Feels so good to be back in open source. 😌
https://github.com/astral-sh/ruff/releases/tag/0.14.0
It looks like Python 3.14.0 has been released today:)
https://www.python.org/downloads/release/python-3140/

# Find your non 3.14 #python, run in folder parent to all your repos
```
from pathlib import Path;import subprocess
g=0;b=[]
for p in Path().cwd().iterdir():
v=p/'.venv'
if v.exists():
e=v/'Scripts/python.exe'if(v/'Scripts/python.exe').exists()else v/'bin/python'
if e.exists():
r=subprocess.run([e,'--version'],capture_output=1,text=1)
if'3.14'in r.stdout:g+=1
else:b.append((p.name,r.stdout.strip()))
else:b.append((p.name,'no py'))
if b:[print('bad:',*b)]
print(f'{g} good')
```
Presentation tools https://anarc.at/blog/2020-09-30-presentation-tools #debian-planet #python-planet #software #review