Microsoft Agent Framework for Python v1.0.0-rc3 Release
https://github.com/microsoft/agent-framework/releases/tag/python-1.0.0rc3
#python #ai #agentframework #agents #programming
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...
https://raccoonette.gumroad.com/l/Python-for-Beginners-From-Zero-to-Your-First-Projects
#Python #CodingTips #Programming
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...
https://raccoonette.gumroad.com/l/Python-for-Beginners-From-Zero-to-Your-First-Projects
#Python #CodingTips #Programming
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.
https://seedtag-1.jobs.personio.com/job/2374501
【初心者】一番丁寧にデータベースのマイグレーションとORMapperを理解したい(ORMapper編)
https://qiita.com/masa-asa/items/7bea04e4f9ba5b9ef092?utm_campaign=popular_items&utm_medium=feed&utm_source=popular_items
#qiita #Python #sqlalchemy #初心者 #Database #ORM
「無料でAIエージェント作れるやん」→ ローカルLLMに100回ツール呼び出しさせたら"成功したはずの出力"がカオスだった話
https://qiita.com/toarusyakaijin/items/3ab5caa68a8a33f5ec73?utm_campaign=popular_items&utm_medium=feed&utm_source=popular_items
#qiita #Python #初心者 #AI #LLM #ollama
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: https://www.meetup.com/python-14/events/313482982
#Python #MachineLearning #SQLite #Trading #MLOps
PEP — это не стиль. это язык, которым ты думаешь о коде
Я долго думала, что PEP — это про оформление. PEP 8: называй переменные вот так, PEP 257: пиши докстринги вот так. Потом начала использовать их по‑настоящему и выяснилось, что часть из них вообще не про то, как выглядит код!
https://habr.com/ru/articles/1006908/
#pep8 #pep544 #pep698 #pep634 #pep695 #python312 #python3 #python
Great thing in a job you don't know everything about is there's always something new. 🤷♂️
Yesterday, it was #tqdm and #Ruff.
"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
One click, infinite masks! 🖱️
Learn how to use SAM (ViT-H) and OpenCV to generate segmentation masks from a single point.
Code: https://eranfeit.net/one-click-segment-anything-in-python-sam-vit-h/
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.
https://www.youtube.com/watch?v=TIR4-zc44as