PYX: The next step in Python packaging
#python #StupidMistakes #ReminderToSelf To put a single string s in a tuple use (s, ) and not tuple(s)!
Any alternate S3 API clients for #Python I can modify?
I would hack on s3cmd, but it's GPL2 and I need this for proprietary code.
📢 Exciting news—Eliot Robson is our new rotating Editor in Chief! 🎉
A past package submitter and reviewer, Eliot brings experience and a collaborative spirit to guiding pyOpenSci’s peer review process—helping maintainers make scientific Python packages more robust, reusable, and sustainable.
💛 Join us in congratulating him!
#OpenScience #Python #ResearchSoftware #PeerReview #pyOpenSci

I got the icons working after a lot of troubleshooting since the docs were wrong in that regard.
Added icons for wolf and deer and tree
#beeware #python #android

If you care about the future of #python and @ThePSF then you're going to want to vote in this year's board election. Good news! You still have time to become a member and affirm your intention to vote. The deadline is Tuesday, August 26th, 2:00 pm UTC but don't leave it to the very last minute!
https://www.python.org/psf/membership/supporting/
Announcing Positron's dedicated console for interactive coding!
Run single lines of #RStats or #Python code, switch languages & versions on the fly, and quickly scan outputs.
Learn more about Positron’s dedicated console: https://positron.posit.co/
(solved) Setup virtual enviroment for python 2.7.18 and python 3 same Ubuntu 24.04 #python #python3 #virtualenv
https://askubuntu.com/q/1554321/612
You can now analyze images with #Python in #Excel
https://www.elevenforum.com/t/you-can-now-analyze-images-with-python-in-excel.38801/

#Steady-CommunityContent
Mit einem einfachen #Python-Skript auf dem #RaspberryPi sollten die Leistungsdaten des EZ1-SPE #Wechselrichters lokal gespeichert werden.
Dabei half mir generative KI. Wie man die Daten in einer #CSV-Datei für spätere #Datenanalyse und Monatsvergleiche speichert, lest ihr im Artikel.
Ich widme mich in dieser Artikelserie den Erfahrungen mit meinem #Steckersolargerät.
#Steckersolar #Mieterstrom #Photovoltaik #Balkonsolar #Bürgerstrom
I wish that `pip` had a search, like Debian's `apt search`. I wish that command-line package managers (example: apt, yum, pip, nmp) project leaders would get together and exchange good ideas on user experience...
```
pip search spacy
ERROR: XMLRPC request failed [code: -32500]
RuntimeError: PyPI no longer supports 'pip search' (or XML-RPC search). Please use https://pypi.org/search (via a browser) instead. See https://warehouse.pypa.io/api-reference/xml-rpc.html#deprecated-methods for more information.
```
OK, cooles Gefühl wenn die mit der Zeit erworbenen Fähigkeiten sich auszahlen:
Meine lookup-Funktion übersetzt Strings über eine Tabelle in 2-3 Mikrosekunden, egal wo in der Tabelle die stehen (constant time). Ich nutze dafür eine pre-computed Hashtable (fancy wording für: ein dictionary).
Das ginge noch schneller, wenn die Hashtable nicht die Zeilennummer, sondern die übersetzte Nachricht rauswerfen würde, aber 2-3 Mikrosekunden waren mir dann genug Performance für diese Aufgabe 😜
#python