Spyder IDE: Officially announcing the release of Spyder 6!
Link: https://www.spyder-ide.org/blog/release-spyder-6.0.0
After two years in development and more than 2600 commits from over two dozen authors around the world, Spyder 6.0.0 had its stable release on September 3, 2024! Now that 6.0.1 is out and the dust has
Link: https://www.spyder-ide.org/blog/release-spyder-6.0.0
After two years in development and more than 2600 commits from over two dozen authors around the world, Spyder 6.0.0 had its stable release on September 3, 2024! Now that 6.0.1 is out and the dust has
Real Python: The Real Python Podcast – Episode #224: Narwhals: Expanding DataFrame Compatibility Between Libraries
Link: https://realpython.com/podcasts/rpp/224/
How does a Python tool support all types of DataFrames and their various features? Could a lightweight library be used to add compatibility for newer formats like Polars or PyArrow? This week on the s
Link: https://realpython.com/podcasts/rpp/224/
How does a Python tool support all types of DataFrames and their various features? Could a lightweight library be used to add compatibility for newer formats like Polars or PyArrow? This week on the s
Realpython
Episode #224: Narwhals: Expanding DataFrame Compatibility Between Libraries – The Real Python Podcast
How does a Python tool support all types of DataFrames and their various features? Could a lightweight library be used to add compatibility for newer formats like Polars or PyArrow? This week on the show, we speak with Marco Gorelli about his project, Narwhals.
Real Python: Quiz: Single and Double Underscores in Python Names
Link: https://realpython.com/quizzes/python-double-underscore/
In this quiz, you’ll test your understanding of Single and Double Underscores in Python Names.
By working through this quiz, you’ll revisit Python naming conventions that rely on using underscores (_)
Link: https://realpython.com/quizzes/python-double-underscore/
In this quiz, you’ll test your understanding of Single and Double Underscores in Python Names.
By working through this quiz, you’ll revisit Python naming conventions that rely on using underscores (_)
Realpython
Single and Double Underscores in Python Names Quiz – Real Python
In this quiz, you'll test your understanding of the use of single and double underscores in Python names. This knowledge will help you differentiate between public and non-public names, avoid name clashes, and write code that looks Pythonic and consistent.
Matt Layman: Epic Debugging, Hilarious Outcome - Building SaaS #205
Link: https://www.mattlayman.com/blog/2024/epic-debugging-hilarious-outcome-building-saas-205/
In this episode, I dug into an issue with sign up. What I thought was going to be a minor issue to fix turned into a massively intense debugging session. We ended up going very deep with the django-al
Link: https://www.mattlayman.com/blog/2024/epic-debugging-hilarious-outcome-building-saas-205/
In this episode, I dug into an issue with sign up. What I thought was going to be a minor issue to fix turned into a massively intense debugging session. We ended up going very deep with the django-al
Matt Layman
Epic Debugging, Hilarious Outcome - Building SaaS #205
In this episode, I dug into an issue with sign up. What I thought was going to be a minor issue to fix turned into a massively intense debugging session. We ended up going very deep with the django-allauth package to understand what was going on.
Armin Ronacher: Serendipity
Link: http://lucumr.pocoo.org/2024/10/19/serendipity
Life begins.
An empty page.
A hollow echo on an barren stage.
We wander through the quiet air,
Unsure of what awaits us there.
With work and study, I filled the days,
But purpose wanes in fading ha
Link: http://lucumr.pocoo.org/2024/10/19/serendipity
Life begins.
An empty page.
A hollow echo on an barren stage.
We wander through the quiet air,
Unsure of what awaits us there.
With work and study, I filled the days,
But purpose wanes in fading ha
Armin Ronacher's Thoughts and Writings
Serendipity
A poem to my wife.
Python Does What?!: Enums make good singletons
Link: https://www.pythondoeswhat.com/2024/10/enums-make-good-singletons.html
It's simple and common to allocate a marker object to represent missing or null data.
MISSING = object()
There's a slightly more verbose construct with some advantages:
import enum
class MissingType
Link: https://www.pythondoeswhat.com/2024/10/enums-make-good-singletons.html
It's simple and common to allocate a marker object to represent missing or null data.
MISSING = object()
There's a slightly more verbose construct with some advantages:
import enum
class MissingType
Pythondoeswhat
Enums make good singletons
It's simple and common to allocate a marker object to represent missing or null data. MISSING = object() There's a slightly more verbose...
Julien Tayon: Revisiting hello world : coding print from scratch part I
Link: http://beauty-of-imagination.blogspot.com/2024/10/revisiting-hello-world-coding-print.html
The « hello world » example is about standing on the shoulders of the giant and learn how to use function as tools.
Most coders will use print during their whole life without actually coding it. Howev
Link: http://beauty-of-imagination.blogspot.com/2024/10/revisiting-hello-world-coding-print.html
The « hello world » example is about standing on the shoulders of the giant and learn how to use function as tools.
Most coders will use print during their whole life without actually coding it. Howev
Blogspot
Revisiting hello world : coding print from scratch part I
The « hello world » example is about standing on the shoulders of the giant and learn how to use function as tools. Most coders will use p...
Seth Michael Larson: Python and Sigstore
Link: https://sethmlarson.dev/python-and-sigstore?utm_campaign=rss
Python and Sigstore
Link: https://sethmlarson.dev/python-and-sigstore?utm_campaign=rss
Python and Sigstore
sethmlarson.dev
Python and Sigstore
This critical role would not be possible without funding from the Alpha-Omega project. Massive thank-you to Alpha-Omega for investing in the security of the Python ecosystem!
I was a guest on ...
I was a guest on ...
Zato Blog: HL7 FHIR Security with Basic Auth, OAuth and SSL/TLS
Link: https://zato.io/en/blog/hl7-fhir-security.html
HL7 FHIR Security with Basic Auth, OAuth and SSL/TLS
2024-10-21, by Dariusz Suchojad
HL7 FHIR Security
Preliminary reading: HL7 FHIR Integrations in Python
FHIR servers offer their APIs using
Link: https://zato.io/en/blog/hl7-fhir-security.html
HL7 FHIR Security with Basic Auth, OAuth and SSL/TLS
2024-10-21, by Dariusz Suchojad
HL7 FHIR Security
Preliminary reading: HL7 FHIR Integrations in Python
FHIR servers offer their APIs using
Julien Tayon: Hello world part II : actually recoding print
Link: http://beauty-of-imagination.blogspot.com/2024/10/hello-world-part-ii-actually-recoding.html
In part I we explored the pre-requisite in order to code print : having a grasp on the framebuffer.
Here, we are gonna deep inside one of the most overlooked object oriented abastraction : a file an
Link: http://beauty-of-imagination.blogspot.com/2024/10/hello-world-part-ii-actually-recoding.html
In part I we explored the pre-requisite in order to code print : having a grasp on the framebuffer.
Here, we are gonna deep inside one of the most overlooked object oriented abastraction : a file an
Blogspot
Hello world part II : actually recoding print
Real Python: Python's property(): Add Managed Attributes to Your Classes
Link: https://realpython.com/python-property/
With Python’s property(), you can create managed attributes in your classes. You can use managed attributes when you need to modify an attribute’s internal implementation and don’t want to change the
Link: https://realpython.com/python-property/
With Python’s property(), you can create managed attributes in your classes. You can use managed attributes when you need to modify an attribute’s internal implementation and don’t want to change the
Realpython
Python's property(): Add Managed Attributes to Your Classes – Real Python
In this tutorial, you'll learn how to create managed attributes in your classes using Python's property(). Managed attributes are attributes that have function-like behavior, which allows for performing actions during the attribute access and update.
Python Bytes: #406 What's on Django TV tonight?
Link: https://pythonbytes.fm/episodes/show/406/whats-on-django-tv-tonight
<strong>Topics covered in this episode:</strong><br>
<ul>
<li><a href="https://opensourcepledge.com?featured_on=pythonbytes"><strong>Open Source Pledge</strong></a></li>
<li><strong>Jeff Triplet's <
Link: https://pythonbytes.fm/episodes/show/406/whats-on-django-tv-tonight
<strong>Topics covered in this episode:</strong><br>
<ul>
<li><a href="https://opensourcepledge.com?featured_on=pythonbytes"><strong>Open Source Pledge</strong></a></li>
<li><strong>Jeff Triplet's <
pythonbytes.fm
What's on Django TV tonight?
News and announcements from the Python community for the week of Oct 21st, 2024
Julien Tayon: Tune your guitar with python
Link: http://beauty-of-imagination.blogspot.com/2024/10/tune-your-guitar-with-python.html
Today's exercice is just about turning a very nice example of the python soundevice module into something that works for me© to help me tune my bass.
Long story short, I suck at tuning my instrument a
Link: http://beauty-of-imagination.blogspot.com/2024/10/tune-your-guitar-with-python.html
Today's exercice is just about turning a very nice example of the python soundevice module into something that works for me© to help me tune my bass.
Long story short, I suck at tuning my instrument a
Blogspot
Tune your guitar with python
Python Anywhere: Improving PythonAnywhere's File Storage System
Link: https://blog.pythonanywhere.com/217/
PythonAnywhere has been around for over 10
years, and as our platform continues to
grow with thousands of users, we’re committed to keeping it in top shape. Part
of this involves upgrading some of the
Link: https://blog.pythonanywhere.com/217/
PythonAnywhere has been around for over 10
years, and as our platform continues to
grow with thousands of users, we’re committed to keeping it in top shape. Part
of this involves upgrading some of the
Real Python: Quiz: Pydantic: Simplifying Data Validation in Python
Link: https://realpython.com/quizzes/python-pydantic/
In this quiz, you’ll test your understanding of
Pydantic. Pydantic is a powerful data validation library for Python. You can also use a related library, pydantic-settings, for settings management.
By
Link: https://realpython.com/quizzes/python-pydantic/
In this quiz, you’ll test your understanding of
Pydantic. Pydantic is a powerful data validation library for Python. You can also use a related library, pydantic-settings, for settings management.
By
Realpython
Pydantic: Simplifying Data Validation in Python Quiz – Real Python
In this quiz, you'll test your understanding of Pydantic, a powerful data validation library for Python. You'll revisit concepts such as working with data schemas, writing custom validators, validating function arguments, and managing settings with pydantic…
Real Python: Understanding Python's Global Interpreter Lock (GIL)
Link: https://realpython.com/courses/understanding-global-interpreter-lock-gil/
The Python Global Interpreter Lock or GIL, in simple words, is a mutex (or a lock) that allows only one thread to hold the control of the Python interpreter.
This means that only one thread can be in
Link: https://realpython.com/courses/understanding-global-interpreter-lock-gil/
The Python Global Interpreter Lock or GIL, in simple words, is a mutex (or a lock) that allows only one thread to hold the control of the Python interpreter.
This means that only one thread can be in
Realpython
Understanding Python's Global Interpreter Lock (GIL) – Real Python
Python's Global Interpreter Lock or GIL, in simple words, is a mutex (or a lock) that allows only one thread to hold the control of the Python interpreter at any one time. In this video course you'll learn how the GIL affects the performance of your Python…
PyCoder’s Weekly: Issue #652 (Oct. 22, 2024)
Link: https://pycoders.com/issues/652
#652 – OCTOBER 22, 2024 View in Browser » Structural Pattern Matching in Python In this tutorial, you’ll learn how to harness the power of structural pattern matching in Python. You’ll explore t
Link: https://pycoders.com/issues/652
#652 – OCTOBER 22, 2024 View in Browser » Structural Pattern Matching in Python In this tutorial, you’ll learn how to harness the power of structural pattern matching in Python. You’ll explore t
Pycoders
PyCoder’s Weekly | Issue #652
Issue #652 of the PyCoder’s Weekly newsletter, published Oct. 22, 2024.
Real Python: Python Thread Safety: Using a Lock and Other Techniques
Link: https://realpython.com/python-thread-lock/
Python threading allows you to run parts of your code concurrently, making the code more efficient. However, when you introduce threading to your code without knowing about thread safety, you may run
Link: https://realpython.com/python-thread-lock/
Python threading allows you to run parts of your code concurrently, making the code more efficient. However, when you introduce threading to your code without knowing about thread safety, you may run
Realpython
Python Thread Safety: Using a Lock and Other Techniques – Real Python
In this tutorial, you'll learn about the issues that can occur when your code is run in a multithreaded environment. Then you'll explore the various synchronization primitives available in Python's threading module, such as locks, which help you make your…
The Python Show: 48 - Writing About Python with David Mertz
Link: https://www.pythonshow.com/p/48-writing-about-python-with-david
In this episode of the Python Show Podcast, David Mertz is our guest. David is a prolific writer about the Python programming language. From his extremely popular IPM Developerworks articles to his mu
Link: https://www.pythonshow.com/p/48-writing-about-python-with-david
In this episode of the Python Show Podcast, David Mertz is our guest. David is a prolific writer about the Python programming language. From his extremely popular IPM Developerworks articles to his mu
Pythonshow
48 - Writing About Python with David Mertz
In this episode of the Python Show Podcast, David Mertz is our guest.
PyPy: A DSL for Peephole Transformation Rules of Integer Operations in the PyPy JIT
Link: https://www.pypy.org/posts/2024/10/jit-peephole-dsl.html
As is probably apparent from the sequence of blog posts about the topic in the
last year, I have been thinking about and working on integer optimizations in the JIT
compiler a lot. This work was mainl
Link: https://www.pypy.org/posts/2024/10/jit-peephole-dsl.html
As is probably apparent from the sequence of blog posts about the topic in the
last year, I have been thinking about and working on integer optimizations in the JIT
compiler a lot. This work was mainl
PyPy
A DSL for Peephole Transformation Rules of Integer Operations in the P
As is probably apparent from the sequence of blog posts about the topic in the
last year, I have been thinking about and working on integer optimizations in the JIT
compiler a lot. This work was mainl
last year, I have been thinking about and working on integer optimizations in the JIT
compiler a lot. This work was mainl
Matt Layman: Epic Debugging, Hilarious Outcome - Building SaaS #205
Link: https://www.mattlayman.com/videos/epic-debugging-hilarious-outcome-building-saas-205/
In this episode, I dug into an issue with sign up. What I thought was going to be a minor issue to fix turned into a massively intense debugging session. We ended up going very deep with the django-al
Link: https://www.mattlayman.com/videos/epic-debugging-hilarious-outcome-building-saas-205/
In this episode, I dug into an issue with sign up. What I thought was going to be a minor issue to fix turned into a massively intense debugging session. We ended up going very deep with the django-al
Matt Layman
Epic Debugging, Hilarious Outcome - Building SaaS #205
In this episode, I dug into an issue with sign up. What I thought was going to be a minor issue to fix turned into a massively intense debugging session. We ended up going very deep with the django-allauth package to understand what was going on.