python

Back Open Paginator
08.10.2025 01:22
hackernews_bot_vn (@hackernews_bot_vn@mastodon.maobui.com)

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

artvandelay.github.io/codex-ag




Show Original Post


08.10.2025 01:04
talkpython (@talkpython@fosstodon.org)

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

youtube.com/watch?v=_LFdKjsKdPE




Show Original Post


08.10.2025 00:55
lobsters (@lobsters@mastodon.social)

Lazy imports using wrapt lobste.rs/s/kkxjz8
grahamdumpleton.me/posts/2025/




Show Original Post


08.10.2025 00:43
offby1 (@offby1@wandering.shop)

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?




Show Original Post


08.10.2025 00:39
SocketSecurity (@SocketSecurity@fosstodon.org)

#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




Show Original Post


08.10.2025 00:30
lobsters (@lobsters@mastodon.social)

Python 3.14.0 is now available lobste.rs/s/zfwbni
blog.python.org/2025/10/python




Show Original Post


07.10.2025 23:12
greger (@greger@oslo.town)

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?




Show Original Post


07.10.2025 23:11
ubuntu_touch (@ubuntu_touch@mstdn.social)

Precios históricos Recope Costa Rica

#Python #Energy #Energia #CostaRica #Anzoategui #Lecheria Software Libre #SoftwareLibre





Show Original Post


07.10.2025 22:30
amethyst (@amethyst@toots.n7.gg)

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. 😌

github.com/astral-sh/ruff/rele

#Python #Ruff




Show Original Post


07.10.2025 22:17
lig (@lig@floss.social)

It looks like Python 3.14.0 has been released today:)
python.org/downloads/release/p

#Python #Python314 #Release





Show Original Post


07.10.2025 21:44
mistersql (@mistersql@mastodon.social)

# Find your non 3.14 , 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')
```




Show Original Post


07.10.2025 21:36
Anarcat (@Anarcat@kolektiva.social)

Presentation tools anarc.at/blog/2020-09-30-prese #debian-planet #python-planet #software #review




Show Original Post


1 ...1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 ...1559
UP