Python Software Foundation: The Python Language Summit 2023: Making the Global Interpreter Lock Optional
Link: https://pyfound.blogspot.com/2023/05/the-python-language-summit-2023-making.html
The Global Interpreter Lock (“GIL”), is one of the most fundamental parts of how Python works today. It’s also one of the most controversial parts, as it prevents true concurrency between threads – an
Link: https://pyfound.blogspot.com/2023/05/the-python-language-summit-2023-making.html
The Global Interpreter Lock (“GIL”), is one of the most fundamental parts of how Python works today. It’s also one of the most controversial parts, as it prevents true concurrency between threads – an
Python Software Foundation Blog
The Python Language Summit 2023: Making the Global Interpreter Lock Optional
The Global Interpreter Lock (“GIL”), is one of the most fundamental parts of how Python works today. It’s also one of the most controversia...
Python Software Foundation: The Python Language Summit 2023: Burnout is Real
Link: https://pyfound.blogspot.com/2023/05/the-python-language-summit-2023-burnout.html
Guido van Rossum, creator of the Python programming language, spoke at the 2023 Python Language Summit on the subject of open-source burnout, strategies for tackling it, and how to avoid it.The first
Link: https://pyfound.blogspot.com/2023/05/the-python-language-summit-2023-burnout.html
Guido van Rossum, creator of the Python programming language, spoke at the 2023 Python Language Summit on the subject of open-source burnout, strategies for tackling it, and how to avoid it.The first
Python Software Foundation Blog
The Python Language Summit 2023: Burnout is Real
Guido van Rossum, creator of the Python programming language, spoke at the 2023 Python Language Summit on the subject of open-source burno...
Python Software Foundation: The Python Language Summit 2023: Towards Native Profiling for Python
Link: https://pyfound.blogspot.com/2023/05/the-python-language-summit-2023-towards.html
Joannah Nanjekye came to the Python Language Summit 2023 to discuss innovations by Scalene, a sampling-based Python profiler that can distinguish between native code and Python code in its reports. Af
Link: https://pyfound.blogspot.com/2023/05/the-python-language-summit-2023-towards.html
Joannah Nanjekye came to the Python Language Summit 2023 to discuss innovations by Scalene, a sampling-based Python profiler that can distinguish between native code and Python code in its reports. Af
Python Software Foundation Blog
The Python Language Summit 2023: Towards Native Profiling for Python
Joannah Nanjekye came to the Python Language Summit 2023 to discuss innovations by Scalene , a sampling-based Python profiler that can dis...
Python Software Foundation: The Python Language Summit 2023: Three Talks on the C API
Link: https://pyfound.blogspot.com/2023/05/the-python-language-summit-2023-three.html
The Python Language Summit 2023 began with an extended discussion of Python’s C API – the interface through which it is possible to communicate between code written in Python and code written in low-l
Link: https://pyfound.blogspot.com/2023/05/the-python-language-summit-2023-three.html
The Python Language Summit 2023 began with an extended discussion of Python’s C API – the interface through which it is possible to communicate between code written in Python and code written in low-l
Python Software Foundation Blog
The Python Language Summit 2023: Three Talks on the C API
The Python Language Summit 2023 began with an extended discussion of Python’s C API – the interface through which it is possible to commun...
Tryton News: News from the Tryton Unconference 2023 in Berlin
Link: https://discuss.tryton.org/t/news-from-the-tryton-unconference-2023-in-berlin/6198
The Tryton Unconference 2023 in Berlin has come to an end. We had a great time and shared lots of information, work and fun. We would also like to thank all the wonderful people in the conference,
Link: https://discuss.tryton.org/t/news-from-the-tryton-unconference-2023-in-berlin/6198
The Tryton Unconference 2023 in Berlin has come to an end. We had a great time and shared lots of information, work and fun. We would also like to thank all the wonderful people in the conference,
Tryton Discussion
News from the Tryton Unconference 2023 in Berlin
The Tryton Unconference 2023 in Berlin has come to an end. We had a great time and shared lots of information, work and fun. We would also like to thank all the wonderful people in the conference, the organisers and sponsors and the Tryton Foundation for…
Stack Abuse: How to Remove Whitespaces from a String in Python
Link: https://stackabuse.com/how-to-remove-whitespaces-from-a-string-in-python/
Introduction
In programming, data often doesn't come in a neat, ready-to-use format. This is particularly true when we deal with strings, which often need to be cleaned, formatted, or manipulated in s
Link: https://stackabuse.com/how-to-remove-whitespaces-from-a-string-in-python/
Introduction
In programming, data often doesn't come in a neat, ready-to-use format. This is particularly true when we deal with strings, which often need to be cleaned, formatted, or manipulated in s
Stack Abuse
How to Remove Whitespaces from a String in Python
In programming, data often doesn't come in a neat, ready-to-use format. This is particularly true when we deal with strings, which often need to be cleaned, fo...
Talk Python to Me: #417: Test-Driven Prompt Engineering for LLMs with Promptimize
Link: https://talkpython.fm/episodes/show/417/test-driven-prompt-engineering-for-llms-with-promptimize
Large language models and chat-based AIs are kind of mind blowing at the moment. Many of us are playing with them for working on code or just as a fun alternative to search. But others of us are build
Link: https://talkpython.fm/episodes/show/417/test-driven-prompt-engineering-for-llms-with-promptimize
Large language models and chat-based AIs are kind of mind blowing at the moment. Many of us are playing with them for working on code or just as a fun alternative to search. But others of us are build
talkpython.fm
Test-Driven Prompt Engineering for LLMs with Promptimize
Large language models and chat-based AIs are kind of mind blowing at the moment. Many of us are playing with them for working on code or just as a fun alternative to search. But others of us are building applications with AI at the core. And when doing that…
Real Python: Getting the First Match From a Python List or Iterable
Link: https://realpython.com/courses/python-first-match/
At some point in your Python journey, you may need to find the first item that matches a certain criterion in a Python iterable, such as a list or dictionary.
The simplest case is that you need to con
Link: https://realpython.com/courses/python-first-match/
At some point in your Python journey, you may need to find the first item that matches a certain criterion in a Python iterable, such as a list or dictionary.
The simplest case is that you need to con
Realpython
Getting the First Match From a Python List or Iterable – Real Python
In this video course, you'll learn about the best ways to get the first match from a Python list or iterable. You'll look into two different strategies, for loops and generators, and compare their performance. Then you'll finish up by creating a reusable…
The Three of Wands: Intro to cattrs 23.1.0
Link: https://threeofwands.com/intro-to-cattrs-23-1-0/
Instead of my usual Twitter and Fediverse threads, for this release of cattrs I figured I&aposd try something different. A blog post lets me describe the additions in more detail, provide context and
Link: https://threeofwands.com/intro-to-cattrs-23-1-0/
Instead of my usual Twitter and Fediverse threads, for this release of cattrs I figured I&aposd try something different. A blog post lets me describe the additions in more detail, provide context and
The Three of Wands
Intro to cattrs 23.1.0
Instead of my usual Twitter and Fediverse threads, for this release of cattrs I figured I'd try something different. A blog post lets me describe the additions in more detail, provide context and usage examples, and produces a permanent record that can be…
Stack Abuse: How to Split String on Multiple Delimiters in Python
Link: https://stackabuse.com/how-to-split-string-on-multiple-delimiters-in-python/
Introduction
Among the plenty of string operations, splitting a string is a significant one, offering the capability to divide a large, composite text into smaller, manageable components. Typically, w
Link: https://stackabuse.com/how-to-split-string-on-multiple-delimiters-in-python/
Introduction
Among the plenty of string operations, splitting a string is a significant one, offering the capability to divide a large, composite text into smaller, manageable components. Typically, w
Stack Abuse
How to Split String on Multiple Delimiters in Python
Among the plenty of string operations, splitting a string is a significant one, offering the capability to divide a large, composite text into smaller, managea...
PyCoder’s Weekly: Issue #579 (May 30, 2023)
Link: https://pycoders.com/issues/579
#579 – MAY 30, 2023 View in Browser » Python’s .__call__() Method: Creating Callable Instances In this tutorial, you’ll learn what a callable is in Python and how to create callable instances us
Link: https://pycoders.com/issues/579
#579 – MAY 30, 2023 View in Browser » Python’s .__call__() Method: Creating Callable Instances In this tutorial, you’ll learn what a callable is in Python and how to create callable instances us
Pycoders
PyCoder’s Weekly | Issue #579
Issue #579 of the PyCoder’s Weekly newsletter, published May 30, 2023.
Python Bytes: #338 Scripting iOS with Python
Link: https://pythonbytes.fm/episodes/show/338/scripting-ios-with-python
<a href='https://www.youtube.com/watch?v=Ho9hznYVxeE' style='font-weight: bold;'>Watch on YouTube</a><br>
<br>
<p><strong>About the show</strong></p>
<p>Sponsored by us! Support our work through:</p
Link: https://pythonbytes.fm/episodes/show/338/scripting-ios-with-python
<a href='https://www.youtube.com/watch?v=Ho9hznYVxeE' style='font-weight: bold;'>Watch on YouTube</a><br>
<br>
<p><strong>About the show</strong></p>
<p>Sponsored by us! Support our work through:</p
pythonbytes.fm
Scripting iOS with Python
News and announcements from the Python community for the week of May 30th, 2023
Brett Cannon: In response to the Changelog #526
Link: https://snarky.ca/in-response-to-the-changelog-526/
In episode 526 of the Changelog podcast entitled, "Git with your friends", they discussed various tools involving git (disclaimer: I have been on the podcast multiple times and had dinner with the hos
Link: https://snarky.ca/in-response-to-the-changelog-526/
In episode 526 of the Changelog podcast entitled, "Git with your friends", they discussed various tools involving git (disclaimer: I have been on the podcast multiple times and had dinner with the hos
Tall, Snarky Canadian
In response to the Changelog #526
In episode 526 of the Changelog podcast entitled, "Git with your friends", they discussed various tools involving git (disclaimer: I have been on the podcast multiple times and had dinner with the hosts of the podcast the last time they were in Vancouver).…
Python GUIs: Your First Steps With the Kivy Library for GUI Development
Link: https://www.pythonguis.com/tutorials/getting-started-kivy/
Kivy is an open-source Python software library for developing graphical user interfaces. It supports cross-platform development for the desktop as well as the creation of multi-touch apps for mobile d
Link: https://www.pythonguis.com/tutorials/getting-started-kivy/
Kivy is an open-source Python software library for developing graphical user interfaces. It supports cross-platform development for the desktop as well as the creation of multi-touch apps for mobile d
Python GUIs
First Steps With the Kivy Library for GUI Development
Kivy is an open-source library for developing graphical user interfaces (GUI). It supports cross-platform development for the desktop as well as the creation of multi-touch apps for mobile devices. In this article, you'll learn about using Kivy to develop…
The Python Coding Blog: From Classes to Turtles via Functools and more | May in Review
Link: https://thepythoncodingbook.com/2023/05/31/from-classes-to-turtles-via-functools-and-more-may-in-review/
I kept myself quite busy May. Not only did I finish running the first The Python Coding Programme cohort and starting running the second. I published seven new articles on The Python Coding Stack. Her
Link: https://thepythoncodingbook.com/2023/05/31/from-classes-to-turtles-via-functools-and-more-may-in-review/
I kept myself quite busy May. Not only did I finish running the first The Python Coding Programme cohort and starting running the second. I published seven new articles on The Python Coding Stack. Her
The Python Coding Book
From Classes to Turtles via Functools and more | May in Review
May review for The Python Coding Place, including seven new articles published on The Python Coding Stack.
Stack Abuse: Reading and Writing SQL Files in Pandas
Link: https://stackabuse.com/reading-and-writing-sql-files-in-pandas/
When I started learning Data Analysis a few years ago, the first thing I learned was SQL and Pandas. As a data analyst, it is crucial to have a strong foundation in working with SQL and Pandas. Both a
Link: https://stackabuse.com/reading-and-writing-sql-files-in-pandas/
When I started learning Data Analysis a few years ago, the first thing I learned was SQL and Pandas. As a data analyst, it is crucial to have a strong foundation in working with SQL and Pandas. Both a
Stack Abuse
Reading and Writing SQL Files in Pandas
When I started learning Data Analysis a few years ago, the first thing I learned was SQL and Pandas. As a data analyst, it is crucial to have a strong foundatio...
Python for Beginners: Unpacking in Python
Link: https://www.pythonforbeginners.com/basics/unpacking-in-python
Python provides us with the packing and unpacking operator to convert one iterable object to another easily. In this article, we will discuss the unpacking operator in Python with different examples.
Link: https://www.pythonforbeginners.com/basics/unpacking-in-python
Python provides us with the packing and unpacking operator to convert one iterable object to another easily. In this article, we will discuss the unpacking operator in Python with different examples.
PythonForBeginners.com
Unpacking in Python - PythonForBeginners.com
Unpacking in Python will help you improve your python skills with easy to follow examples and tutorials in Python.
Real Python: Create and Modify PDF Files in Python
Link: https://realpython.com/creating-modifying-pdf/
It’s really useful to know how to create and modify PDF (portable document format) files in Python. This is one of the most common formats for sharing documents over the Internet. PDF files can contai
Link: https://realpython.com/creating-modifying-pdf/
It’s really useful to know how to create and modify PDF (portable document format) files in Python. This is one of the most common formats for sharing documents over the Internet. PDF files can contai
Realpython
Create and Modify PDF Files in Python – Real Python
In this tutorial, you'll explore the different ways of creating and modifying PDF files in Python. You'll learn how to read and extract text, merge and concatenate files, crop and rotate pages, encrypt and decrypt files, and even create PDFs from scratch.
Python Software Foundation: PSF Board Election Dates for 2023
Link: https://pyfound.blogspot.com/2023/05/psf-board-election-dates-for-2023.html
Board elections are a chance for the community to choose representatives to help the PSF create a vision for and build the future of the Python community. This year there are 4 seats open on the PSF b
Link: https://pyfound.blogspot.com/2023/05/psf-board-election-dates-for-2023.html
Board elections are a chance for the community to choose representatives to help the PSF create a vision for and build the future of the Python community. This year there are 4 seats open on the PSF b
Python Software Foundation Blog
PSF Board Election Dates for 2023
Board elections are a chance for the community to choose representatives to help the PSF create a vision for and build the future of the Pyt...
PyCharm: Five Things To Love About the New UI
Link: https://blog.jetbrains.com/pycharm/2023/05/five-things-to-love-about-the-new-ui/
Are you using the New UI yet? Not yet? Let me tell you why it’s the best thing since sliced bread!
Let’s get it enabled and take a look around. The easiest way to do that is from the Settings cog at
Link: https://blog.jetbrains.com/pycharm/2023/05/five-things-to-love-about-the-new-ui/
Are you using the New UI yet? Not yet? Let me tell you why it’s the best thing since sliced bread!
Let’s get it enabled and take a look around. The easiest way to do that is from the Settings cog at
The JetBrains Blog
Five Things To Love About the New UI | The PyCharm Blog
Are you using the New UI yet? Not yet? Let me tell you why it's the best thing since sliced bread! Let’s get it enabled and take a look around. The easiest way to do that is from the Settings cog