Real Python: Python 3.12: Cool New Features for You to Try
Link: https://realpython.com/python312-new-features/
Python 3.12 was published on October 2, 2023. As usual, the new version comes out in October after lots of effort by volunteers worldwide.
The new version comes with several new features and improveme
Link: https://realpython.com/python312-new-features/
Python 3.12 was published on October 2, 2023. As usual, the new version comes out in October after lots of effort by volunteers worldwide.
The new version comes with several new features and improveme
Realpython
Python 3.12: Cool New Features for You to Try – Real Python
In this tutorial, you'll learn about the new features in Python 3.12. You'll explore how the new release extends the better error messages and faster code execution found in the previous version, and you'll try out the improvements to f-strings and type variable…
Stack Abuse: Python-Specific Design Patterns
Link: https://stackabuse.com/python-specific-design-patterns/
Introduction
Up until now, we've covered Creational, Structural, and Behavioral design patterns. These foundational pillars have offered insights into crafting elegant, maintainable, and scalable Pyth
Link: https://stackabuse.com/python-specific-design-patterns/
Introduction
Up until now, we've covered Creational, Structural, and Behavioral design patterns. These foundational pillars have offered insights into crafting elegant, maintainable, and scalable Pyth
Stack Abuse
Python-Specific Design Patterns
Up until now, we've covered Creational, Structural, and Behavioral design patterns. These foundational pillars have offered insights into crafting elegant, mai...
Python Insider: Python 3.12.0 (final) now available
Link: https://pythoninsider.blogspot.com/2023/10/python-3120-final-now-available.html
Finally, it’s final! The final release of Python 3.12.0 (final) is here!https://www.python.org/downloads/release/python-3120/ This is the stable release of Python 3.12.0
Python 3.12.0 is the newest m
Link: https://pythoninsider.blogspot.com/2023/10/python-3120-final-now-available.html
Finally, it’s final! The final release of Python 3.12.0 (final) is here!https://www.python.org/downloads/release/python-3120/ This is the stable release of Python 3.12.0
Python 3.12.0 is the newest m
Blogspot
Python Insider: Python 3.12.0 (final) now available
Python Insider: Python 3.11.6 is now available
Link: https://pythoninsider.blogspot.com/2023/10/python-3116-is-now-available.html
This is the sixth maintenance release of Python 3.11Python 3.11.6 is the newest major release of the Python programming language, and it contains many new features and optimizations. Get it here:htt
Link: https://pythoninsider.blogspot.com/2023/10/python-3116-is-now-available.html
This is the sixth maintenance release of Python 3.11Python 3.11.6 is the newest major release of the Python programming language, and it contains many new features and optimizations. Get it here:htt
Blogspot
Python Insider: Python 3.11.6 is now available
Brian Okken: Python 3.12 + "AttributeError: module 'pkgutil' has no attribute 'ImpImporter'. Did you mean: 'zipimporter'?"
Link: https://pythontest.com/posts/2023/2023-10-02-py312-impimporter/
Are you seeing AttributeError: ...ImpImporter ... when trying to test with tox and Python 3.12?
If so, try:
Creating your develompent venv with Python 3.11 Adding download = true to your tox.ini run
Link: https://pythontest.com/posts/2023/2023-10-02-py312-impimporter/
Are you seeing AttributeError: ...ImpImporter ... when trying to test with tox and Python 3.12?
If so, try:
Creating your develompent venv with Python 3.11 Adding download = true to your tox.ini run
Pythontest
Upgrading to Python 3.12 and my battle with virtualenv cache
edited Oct 3, 2023 with a new fix and a new understanding of the problem
Initial title was …
Python 3.12 + "AttributeError: module ‘pkgutil’ has no attribute ‘ImpImporter’. Did you mean: ‘zipimporter’?"
This is a tale of upgrading Python 3.12
I ran into…
Initial title was …
Python 3.12 + "AttributeError: module ‘pkgutil’ has no attribute ‘ImpImporter’. Did you mean: ‘zipimporter’?"
This is a tale of upgrading Python 3.12
I ran into…
Sebastian Pölsterl: scikit-survival 0.22.0 released
Link: https://k-d-w.org/blog/2023/10/scikit-survival-0.22.0-released/
I am pleased to announce the release of scikit-survival 0.22.0.
The highlights for this release include
Compatibility with scikit-learn 1.3.
Missing value support for SurvivalTree.
A reduced memory m
Link: https://k-d-w.org/blog/2023/10/scikit-survival-0.22.0-released/
I am pleased to announce the release of scikit-survival 0.22.0.
The highlights for this release include
Compatibility with scikit-learn 1.3.
Missing value support for SurvivalTree.
A reduced memory m
Sebastian Pölsterl
scikit-survival 0.22.0 released | Sebastian Pölsterl
I am pleased to announce the release of scikit-survival 0.22.0.
The highlights for this release include
Compatibility with scikit-learn 1.3.
Missing value support for SurvivalTree.
A reduced memory mode for RandomSurvivalForest, ExtraSurvivalTrees, and…
The highlights for this release include
Compatibility with scikit-learn 1.3.
Missing value support for SurvivalTree.
A reduced memory mode for RandomSurvivalForest, ExtraSurvivalTrees, and…
PyCharm: PyCharm 2023.2.2 Is Now Available
Link: https://blog.jetbrains.com/pycharm/2023/10/2023-2-2/
You can update to this version from inside the IDE, using the Toolbox App, or using snaps if you are an Ubuntu user. Also, you can download it from our website.
Download PyCharm 2023.2.2
Here is the l
Link: https://blog.jetbrains.com/pycharm/2023/10/2023-2-2/
You can update to this version from inside the IDE, using the Toolbox App, or using snaps if you are an Ubuntu user. Also, you can download it from our website.
Download PyCharm 2023.2.2
Here is the l
The JetBrains Blog
PyCharm 2023.2.2 Is Now Available | The PyCharm Blog
You can update to this version from inside the IDE, using the Toolbox App, or using snaps if you are an Ubuntu user. Also, you can download it from our website. Download PyCharm 2023.2.2
TechBeamers Python: Python Get Last Element in List
Link: https://www.techbeamers.com/python-get-last-element-in-list/
In Python, working with lists is a common task, and accessing the last element of a list is a frequent requirement. In this tutorial, we will explore various Python methods to efficiently get the last
Link: https://www.techbeamers.com/python-get-last-element-in-list/
In Python, working with lists is a common task, and accessing the last element of a list is a frequent requirement. In this tutorial, we will explore various Python methods to efficiently get the last
TechBeamers
Python Get Last Element in List
Learn how to get the last element in a Python list using indexing, slicing, pop(), list comprehension, and collections.deque with examples.
Real Python: What's New in Python 3.12
Link: https://realpython.com/courses/new-features-python-312/
It’s that time of year again, time for a new release of Python. Although Python 3.12
mostly focuses on internal improvements, there’s a little something for
everyone. You can read up on all the new fe
Link: https://realpython.com/courses/new-features-python-312/
It’s that time of year again, time for a new release of Python. Although Python 3.12
mostly focuses on internal improvements, there’s a little something for
everyone. You can read up on all the new fe
Realpython
What's New in Python 3.12 – Real Python
In this video course, you'll explore the new features that Python 3.12 brings to the table. These include improved f-strings, better error messages, changes to CPython internals, additions to static typing, and more.
PyCoder’s Weekly: Issue #597 (Oct. 3, 2023)
Link: https://pycoders.com/issues/597
#597 – OCTOBER 3, 2023 View in Browser » Python 3.12: Cool New Features for You to Try In this tutorial, you’ll learn about the new features in Python 3.12. You’ll explore how the new release ex
Link: https://pycoders.com/issues/597
#597 – OCTOBER 3, 2023 View in Browser » Python 3.12: Cool New Features for You to Try In this tutorial, you’ll learn about the new features in Python 3.12. You’ll explore how the new release ex
Pycoders
PyCoder’s Weekly | Issue #597
Issue #597 of the PyCoder’s Weekly newsletter, published Oct. 3, 2023.
Python Bytes: #355 Python 3.12 is Out!
Link: https://pythonbytes.fm/episodes/show/355/python-3.12-is-out
<strong>Topics covered in this episode:</strong><br>
<ul>
<li><a href="https://www.python.org/downloads/"><strong>3.12 is out</strong></a>!</li>
<li><a href="https://pythontest.com/posts/2023/2023-1
Link: https://pythonbytes.fm/episodes/show/355/python-3.12-is-out
<strong>Topics covered in this episode:</strong><br>
<ul>
<li><a href="https://www.python.org/downloads/"><strong>3.12 is out</strong></a>!</li>
<li><a href="https://pythontest.com/posts/2023/2023-1
pythonbytes.fm
Python 3.12 is Out!
News and announcements from the Python community for the week of Oct 3rd, 2023
Seth Michael Larson: Python 3.12.0 from a supply chain security perspective
Link: http://sethmlarson.dev/security-developer-in-residence-weekly-report-13?date=2023-10-04
Python 3.12.0 from a supply chain security perspective
About |
Blog
Link: http://sethmlarson.dev/security-developer-in-residence-weekly-report-13?date=2023-10-04
Python 3.12.0 from a supply chain security perspective
About |
Blog
Seth Michael Larson
Python 3.12.0 from a supply chain security perspective
This critical role would not be possible without funding from the OpenSSF Alpha-Omega Project.
Massive thank-you to Alpha-Omega for investing in the security of the Python ecosystem!
Python ...
Massive thank-you to Alpha-Omega for investing in the security of the Python ecosystem!
Python ...
Django Weblog: Django security releases issued: 4.2.6, 4.1.12, and 3.2.22
Link: https://www.djangoproject.com/weblog/2023/oct/04/security-releases/
In accordance with our security release policy, the Django team
is issuing
Django 4.2.6,
Django 4.1.12, and
Django 3.2.22.
These releases address the security issue detailed below. We encourage all
us
Link: https://www.djangoproject.com/weblog/2023/oct/04/security-releases/
In accordance with our security release policy, the Django team
is issuing
Django 4.2.6,
Django 4.1.12, and
Django 3.2.22.
These releases address the security issue detailed below. We encourage all
us
Django Project
Django security releases issued: 4.2.6, 4.1.12, and 3.2.22
Posted by Natalia Bidart on October 4, 2023
Real Python: Python's tuple Data Type: A Deep Dive With Examples
Link: https://realpython.com/python-tuple/
In Python, a tuple is a built-in data type that allows you to create immutable sequences of values. The values or items in a tuple can be of any type. This makes tuples pretty useful in those situatio
Link: https://realpython.com/python-tuple/
In Python, a tuple is a built-in data type that allows you to create immutable sequences of values. The values or items in a tuple can be of any type. This makes tuples pretty useful in those situatio
Realpython
Python's tuple Data Type: A Deep Dive With Examples – Real Python
In Python, a tuple is a built-in data type that allows you to create immutable sequences of values. The values or items in a tuple can be of any type. This makes tuples pretty useful in those situations where you need to store heterogeneous data, like that…
TechBeamers Python: Python Remove Last Element from List
Link: https://www.techbeamers.com/python-remove-last-element-from-list/
Lists are one of the most fundamental data structures in Python. They are mutable, meaning that their elements can be changed after their creation. Sometimes, you may need to remove the last element f
Link: https://www.techbeamers.com/python-remove-last-element-from-list/
Lists are one of the most fundamental data structures in Python. They are mutable, meaning that their elements can be changed after their creation. Sometimes, you may need to remove the last element f
TechBeamers
Python Remove Last Element from List
Explore how to remove the last element from a list in Python using pop(), del, slicing, and extend() methods with their pros and cons.
William Minchin: minchin.jrnl v7.1 “Phoenix” released
Link: https://blog.minchin.ca/2023/10/minchin-jrnl-710-released.html
Today, the lastest update of minchin.jrnl was released! This release add
custom exporters and importers!
Upgrading
You can upgrade it today:
pip install minchin.jrnl --upgrade
Custom Plugins (Importe
Link: https://blog.minchin.ca/2023/10/minchin-jrnl-710-released.html
Today, the lastest update of minchin.jrnl was released! This release add
custom exporters and importers!
Upgrading
You can upgrade it today:
pip install minchin.jrnl --upgrade
Custom Plugins (Importe
Minchin.ca
minchin.jrnl v7.1 “Phoenix” released
Today, the lastest update of minchin.jrnl was released! This release add custom exporters and importers!
The Python Coding Blog: Butter Berries, Chess, and Timezones | September in Review
Link: https://thepythoncodingbook.com/2023/10/04/butter-berries-chess-and-timezones-september-in-review/
The Python Coding Stack travelled across timezones, through supermarket aisles, and across a chess board in September.
The month started with Butter Berries, An Elusive Delicacy. The inspiration for t
Link: https://thepythoncodingbook.com/2023/10/04/butter-berries-chess-and-timezones-september-in-review/
The Python Coding Stack travelled across timezones, through supermarket aisles, and across a chess board in September.
The month started with Butter Berries, An Elusive Delicacy. The inspiration for t
The Python Coding Book
Butter Berries, Chess, and Timezones | September in Review - The Python Coding Book
Timezones, data structures, and slicing in Python. And some views on fast and slow coding. The Python Coding Stack in September
Luke Plant: Python Type Hints: pyastgrep case study
Link: https://lukeplant.me.uk/blog/posts/python-type-hints-pyastgrep-case-study/
In a previous post, I did a case study on my attempts to add type hints to parsy. In this post, I’m continuing the series, but in a very different project.
A while back I forked an existing tool calle
Link: https://lukeplant.me.uk/blog/posts/python-type-hints-pyastgrep-case-study/
In a previous post, I did a case study on my attempts to add type hints to parsy. In this post, I’m continuing the series, but in a very different project.
A while back I forked an existing tool calle
Luke Plant's home page
Python Type Hints: pyastgrep case study
A second, and more successful attempt to use static type checking in a real Python project
Stack Abuse: Check if a String Contains an Element from a List in Python
Link: https://stackabuse.com/check-if-a-string-contains-an-element-from-a-list-in-python/
Introduction
The ability to check if a string contains any element from a list is used in a wide range of applications, like text filtering, data validation, and natural language processing. Imagine y
Link: https://stackabuse.com/check-if-a-string-contains-an-element-from-a-list-in-python/
Introduction
The ability to check if a string contains any element from a list is used in a wide range of applications, like text filtering, data validation, and natural language processing. Imagine y
Hynek Schlawack: How to Stop macOS from Stealing Focus after Switching Apps Across Desktops
Link: https://hynek.me/til/macos-window-focus-desktops/
For years, I’ve had a macOS bug that occurred randomly and that I could only fix by rebooting or logging out. The Internet is full of similar problems, but I never found a solution to mine, and my ple
Link: https://hynek.me/til/macos-window-focus-desktops/
For years, I’ve had a macOS bug that occurred randomly and that I could only fix by rebooting or logging out. The Internet is full of similar problems, but I never found a solution to mine, and my ple
Hynek Schlawack
How to Stop macOS from Stealing Focus after Switching Apps Across Desktops
For years, I’ve had a macOS bug that occurred randomly and that I could only fix by rebooting or logging out. The Internet is full of similar problems, but I never found a solution to mine, and my pleas for help on Twitter went unanswered. Now, I have found…