Planet Python RSS
216 subscribers
16.9K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
Zero to Mastery: Python Monthly Newsletter 💻🐍

Link: https://zerotomastery.io/blog/python-monthly-newsletter-september-2024/?utm_source=python-rss-feed

58th issue of Andrei Neagoie's must-read monthly Python Newsletter: itertools Guide, Become an Open-Source God, and much more. Read the full newsletter to get up-to-date with everything you need to kn
Terri Oda: Best practices in practice: Black, the Python code formatter

Link: https://terriko.dreamwidth.org/235243.html

This is crossposted from Curiousity.ca, my personal maker blog. If you want to link to this post, please use the original link since the formatting there is usually better.I’m starting a little mini-
Carl Trachte: DAG Hamilton Graph Presented as SVG in Blogger

Link: http://pyright.blogspot.com/2024/09/dag-hamilton-graph-presented-as-svg-in.html

Through the kindness of the DAG Hamilton project team, I was able to secure an official svg version of the DAG Hamilton logo. It looks significantly better than the one I had generated with an online
Python Morsels: The string split method in Python

Link: https://www.pythonmorsels.com/string-split-method/

Strings can be split by a substring separator. Usually the string split is called without any arguments, which splits on any whitespace.



Table of contents

Breaking apart a string by a separator
Sp
Kushal Das: Updated blog theme after many years

Link: https://kushaldas.in/posts/updated-blog-theme-after-many-years.html


One of the major reason of using static blogging for me is to less worry about how the site will look like. Instead the focus was to just write (which of course I did not do well this year). I did no
Python Software Foundation: Service Awards given by the PSF: what are they and how they differ

Link: https://pyfound.blogspot.com/2024/09/service-awards-given-by-psf-what-are.html

Do you know someone in the Python community who inspires you and whose contributions to the Python community are outstanding? Other than saying thank you (definitely do this too!), you can also nomina
Matt Layman: Postgres to SQLite - Building SaaS #204

Link: https://www.mattlayman.com/blog/2024/postgres-to-sqlite-building-saas-204/

In this episode, we worked on the cloud migration’s data strategy. I focused on how to convert a Postgres database into a SQLite database and planned out the process that I will follow to do the actua
Real Python: Quiz: Python 3.13: Cool New Features for You to Try

Link: https://realpython.com/quizzes/python313-new-features/

In this quiz, you’ll test your understanding of
Python 3.13: Cool New Features for You to Try. By working through this quiz, you’ll review the key updates and improvements in this version of Python.
Real Python: Quiz: Syntactic Sugar: Why Python Is Sweet and Pythonic

Link: https://realpython.com/quizzes/syntactic-sugar-python/

Test your understanding of Python’s most common pieces of syntactic sugar and how they make your code more Pythonic and readable.
Take this quiz after reading our Syntactic Sugar: Why Python is Sweet
Ned Batchelder: Changelog philosophy

Link: https://nedbatchelder.com/blog/202409/changelog_philosophy.html

I playfully quipped about changelogs, and Sumana
Harihareswara thoughtfully responded with Changelogs and
Release Notes. I agree with her on some things, and disagree on others.My point with the meme
Zato Blog: Enterprise Python: Integrating with Salesforce

Link: https://zato.io/en/blog/salesforce-python.html


Enterprise Python: Integrating with Salesforce


2024-09-30, by Dariusz Suchojad


Overview
Salesforce connections are one of the newest additions to
Zato
3.2, allowing you to look up and manage Sa
eGenix.com: Python Meeting Düsseldorf - 2024-10-02

Link: https://www.egenix.com/company/news/Python-Meeting-Duesseldorf-2024-10-02

The following text is in German, since we're announcing a regional user group meeting in Düsseldorf, Germany.

Ankündigung
Das nächste Python Meeting Düsseldorf findet an folgendem Termin statt:

02.1
Python⇒Speed: Beyond multi-core parallelism: faster Mandelbrot with SIMD

Link: https://pythonspeed.com/articles/optimizing-with-simd/

What do you do when computation is too expensive?
Recently I’ve had a brilliant business idea: Mandelbrot-as-a-Service!
Instead of companies calculating their own fractals, I will do it for them, fres
PyCharm: What’s the Big Deal About Endpoints for Python Web Development?

Link: https://blog.jetbrains.com/pycharm/2024/09/python-web-development/

Python has almost 30 years of history doing Python web development. Can you believe it? But 3-tier web projects have gotten really complicated and stressful. You’re busy, everything is all over the pl
Real Python: Python 3.13: Cool New Features for You to Try

Link: https://realpython.com/python313-new-features/

Python 3.13 will be published on October 1, 2024. This new version is a major step forward for the language, although several of the biggest changes are happening under the hood and won’t be immediat
Kushal Das: Breaking out of algorithm

Link: https://kushaldas.in/posts/breaking-out-of-algorithm.html


Many of you already know about my love of photography. I am taking photos for
many years, mostly people photos. Portraits in conferences like PyCon or Fedora
events. I regularly post photos to wikipe
Python Morsels: Converting a string to a datetime

Link: https://www.pythonmorsels.com/converting-a-string-to-a-datetime/

The datetime.strptime class method can parse a date/time string into a datetime object.


Table of contents

Parsing strings into datetime objects ➡️
The strptime formatting directives 📑
Just parse my