Python Morsels: The string split method in Python
Strings can be split by a substring separator. Usually the string split is called without any arguments, which splits on any whitespace.Table of contentsBreaking apart a string by a separatorSplitting...
View ArticleKushal Das: Updated blog theme after many years
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 not...
View ArticlePython Software Foundation: Service Awards given by the PSF: what are they...
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...
View ArticleMatt Layman: 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 actual...
View ArticleReal Python: Quiz: Python 3.13: Cool New Features for You to Try
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.[...
View ArticleReal Python: Quiz: Syntactic Sugar: Why Python Is Sweet and Pythonic
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...
View ArticleJames Bennett: There can't be only one
There’s a concept that I’ve heard called by a lot of different names, but my favorite name for it is “the Highlander problem”, which refers to the catchphrase of the campy-yet-still-quite-fun...
View ArticleThe Python Coding Blog: The Python Coding Stack’s New Look
The Python Coding Stack has a new look. Here it is:The Stack has been growing steadily as a standalone publication, separate from The Python Coding Book and The Python Coding Place, and now it has its...
View ArticleMike C. Fletcher: Interesting Memory Leak with Python 3.12 for...
So I'm currently trying to figure out why the PyOpenGL 3.12 test suite is failing. There's a particular test that looks for VBO memory leakage and it looks loosely like this:for i in range(100):...
View ArticleNed Batchelder: Changelog philosophy
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...
View ArticleZato Blog: Enterprise Python: Integrating with Salesforce
Enterprise Python: Integrating with Salesforce 2024-09-30, by Dariusz Suchojad OverviewSalesforce connections are one of the newest additions to Zato 3.2, allowing you to look up and manage Salesforce...
View ArticleeGenix.com: Python Meeting Düsseldorf - 2024-10-02
The following text is in German, since we're announcing a regional user group meeting in Düsseldorf, Germany.AnkündigungDas nächste Python Meeting Düsseldorf findet an folgendem Termin...
View ArticleQuansight Labs Blog: Polars Plugins: let's make them easier to use
Increasing ease-of-use of Polars plugins by improving an existing tutorial.
View ArticlePython⇒Speed: Beyond multi-core parallelism: faster Mandelbrot 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,...
View ArticlePyCharm: What’s the Big Deal About Endpoints for 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...
View ArticleReal Python: Python 3.13: Cool New Features for You to Try
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...
View ArticleKushal Das: Breaking out of algorithm
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...
View ArticlePython Morsels: Converting a string to a datetime
The datetime.strptime class method can parse a date/time string into a datetime object.Table of contentsParsing strings into datetime objects ➡️The strptime formatting directives 📑Just parse my string...
View ArticlePython Bytes: #403 A machine learning algorithm walks into a bar…
<strong>Topics covered in this episode:</strong><br> <ul> <li><strong><a...
View ArticleTryton News: Newsletter September 2024
During the last month we mainly focus on bug fixes, behaviour improvements of several things and speeding-up performance issues stepping forward to our next release 7.4 scheduled to the 4th of...
View Article