python

Back Open Paginator
05.03.2026 13:25
alvinashcraft (@alvinashcraft@hachyderm.io)

Microsoft Agent Framework for Python v1.0.0-rc3 Release

github.com/microsoft/agent-fra

#python #ai #agentframework #agents #programming




Show Original Post


05.03.2026 13:21
mopicmp (@mopicmp@mastodon.social)

Python Tip: zip() for Parallel Iteration

names = ['Alice', 'Bob']
scores = [95, 87]
for name, score in zip(names, scores):
print(f'{name}: {score}')

zip() iterates multiple sequences in parallel. Use zip_longest() if sequences have different...

raccoonette.gumroad.com/l/Pyth




Show Original Post


05.03.2026 13:20
mopicmp (@mopicmp@mastodon.social)

Python Tip: F-String Debugging

x = 42
print(f'{x = }') # Output: x = 42
print(f'{len(data) = }') # Output: len(data) = 15

Add = after a variable in an f-string to print both the expression and its value. Game-changer...

raccoonette.gumroad.com/l/Pyth




Show Original Post


05.03.2026 13:09
hoffmann (@hoffmann@chaos.social)

A good friend of mine has an open #dataengineer position in his group. Stack is #gcp, #python, #trino, #iceberg

The Company is located in Madrid and supports #remote work across europe. The product is adtech, but instead of using user tracking they use contextual Information from the pages where the ads are shown. Both interesting and morally okish approach.

Feel free to boost or reach out if you are interested.

#fedihire #fedijobs

seedtag-1.jobs.personio.com/jo




Show Original Post


05.03.2026 13:07
qiita (@qiita@rss-mstdn.studiofreesia.com)

【初心者】一番丁寧にデータベースのマイグレーションとORMapperを理解したい(ORMapper編)
qiita.com/masa-asa/items/7bea0

#qiita #Python #sqlalchemy #初心者 #Database #ORM




Show Original Post


05.03.2026 13:07
qiita (@qiita@rss-mstdn.studiofreesia.com)

「無料でAIエージェント作れるやん」→ ローカルLLMに100回ツール呼び出しさせたら"成功したはずの出力"がカオスだった話
qiita.com/toarusyakaijin/items

#qiita #Python #初心者 #AI #LLM #ollama




Show Original Post


05.03.2026 12:49
dillonniederhut (@dillonniederhut@fosstodon.org)

What if you could train & predict with LightGBM without ever leaving your database? 🤔

Coming to Houston Python: Kai Zhu's demo of sqlmath doing parallel backtests on 200k rows of SPY tick data - all within SQLite.

We're talking direct C-API bridge, multi-threaded queries, and real production quant workflows.

March 17th, 18:00, Improving
RSVP: meetup.com/python-14/events/31

#Python #MachineLearning #SQLite #Trading #MLOps




Show Original Post


05.03.2026 12:32
habr (@habr@zhub.link)

PEP — это не стиль. это язык, которым ты думаешь о коде

Я долго думала, что PEP — это про оформление. PEP 8: называй переменные вот так, PEP 257: пиши докстринги вот так. Потом начала использовать их по‑настоящему и выяснилось, что часть из них вообще не про то, как выглядит код!

habr.com/ru/articles/1006908/

#pep8 #pep544 #pep698 #pep634 #pep695 #python312 #python3 #python




Show Original Post


05.03.2026 11:41
timofruehwirth (@timofruehwirth@fedihum.org)

Great thing in a job you don't know everything about is there's always something new. 🤷‍♂️

Yesterday, it was #tqdm and #Ruff.

#python #rse




Show Original Post


05.03.2026 11:39
tshepang (@tshepang@hachyderm.io)

"your tutorial was beautifully structured and easy to understand" and "your ability to teach so clearly made a significant difference" are words that have recently been said about my old work

#python




Show Original Post


05.03.2026 11:39
feitgemel (@feitgemel@mastodon.social)

One click, infinite masks! 🖱️

Learn how to use SAM (ViT-H) and OpenCV to generate segmentation masks from a single point.

Medium: medium.com/image-segmentation-

Code: eranfeit.net/one-click-segment




Show Original Post


05.03.2026 11:01
PythonPeak (@PythonPeak@mastodon.social)

Python's Wild Trick For Walkthrough Find Median

Python's Wild Trick For Walkthrough Find Median This content explores interesting aspects of this topic. The information provided offers valuable insights and perspectives. Understanding this reveals how everyday things are more thoughtful than they appear. Next time you'll notice this detail. This fascinating detail shows how much thought goes into things we take for granted.

...

youtube.com/watch?v=TIR4-zc44as




Show Original Post


1 ...378 379 380 381 382 383 384 385 386 387 388 ...1592
UP