Mike Driscoll: Python Logging Book Released!
Link: https://www.blog.pythonlibrary.org/2024/06/03/python-logging-book-released/
The latest Python book from Michael Driscoll is now out. You can get Python Logging today on any of your favorite platforms! The Kindle version of the book is only 99 cents for a limited time!
What d
Link: https://www.blog.pythonlibrary.org/2024/06/03/python-logging-book-released/
The latest Python book from Michael Driscoll is now out. You can get Python Logging today on any of your favorite platforms! The Kindle version of the book is only 99 cents for a limited time!
What d
Mouse Vs Python
Python Logging Book Released! - Mouse Vs Python
The latest Python book from Michael Driscoll is now out. You can get Python Logging today on any of your favorite platforms! The Kindle version of the
TestDriven.io: Approximate Counting in Django and Postgres
Link: https://testdriven.io/blog/django-approximate-counting/
This article looks at how to speed up counting with Django and PostgreSQL.
Link: https://testdriven.io/blog/django-approximate-counting/
This article looks at how to speed up counting with Django and PostgreSQL.
testdriven.io
Approximate Counting in Django and Postgres
This article looks at how to speed up counting with Django and PostgreSQL.
Real Python: String Interpolation in Python: Exploring Available Tools
Link: https://realpython.com/python-string-interpolation/
String interpolation allows you to create strings by inserting objects into specific places in a target string template. Python has several tools for string interpolation, including f-strings, the str
Link: https://realpython.com/python-string-interpolation/
String interpolation allows you to create strings by inserting objects into specific places in a target string template. Python has several tools for string interpolation, including f-strings, the str
Realpython
String Interpolation in Python: Exploring Available Tools – Real Python
In this tutorial, you'll learn about the different tools that Python provides for performing string interpolation. String interpolation allows you to create new strings by inserting different objects into a string template.
Python Morsels: Python's many command-line utilities
Link: https://www.pythonmorsels.com/cli-tools/
Every command-line tool included with Python. These can be run with python -m module_name.
Table of contents
How -m works
General-purpose CLI tools
Especially handy on Windows machines
Working with
Link: https://www.pythonmorsels.com/cli-tools/
Every command-line tool included with Python. These can be run with python -m module_name.
Table of contents
How -m works
General-purpose CLI tools
Especially handy on Windows machines
Working with
Pythonmorsels
Python's many command-line utilities
Every command-line tool included with Python. These can be run with python -m module_name.
Test and Code: 221: How to get pytest to import your code under test
Link: https://podcast.pythontest.com/episodes/221-how-to-get-pytest-to-import-your-code-under-test
We've got some code we want to test, and some tests.The tests need to be able to import the code under test, or at least the API to it, in order to run tests against it.How do we do that? How do we se
Link: https://podcast.pythontest.com/episodes/221-how-to-get-pytest-to-import-your-code-under-test
We've got some code we want to test, and some tests.The tests need to be able to import the code under test, or at least the API to it, in order to run tests against it.How do we do that? How do we se
Test & Code
Test & Code | 221: How to get pytest to import your code under test
We've got some code we want to test, and some tests.The tests need to be able to import the code under test, or at least the API to it, in order to run tests against it.How do we do that? How do we...
TestDriven.io: Storing Django Static and Media Files on DigitalOcean Spaces
Link: https://testdriven.io/blog/django-digitalocean-spaces/
This tutorial shows how to configure Django to load and serve up static and media files, public and private, via DigitalOcean Spaces.
Link: https://testdriven.io/blog/django-digitalocean-spaces/
This tutorial shows how to configure Django to load and serve up static and media files, public and private, via DigitalOcean Spaces.
testdriven.io
Storing Django Static and Media Files on DigitalOcean Spaces
This tutorial shows how to configure Django to load and serve up static and media files, public and private, via DigitalOcean Spaces.
Real Python: Python Interfaces: Object-Oriented Design Principles
Link: https://realpython.com/courses/interfaces-object-oriented-design-principles/
Interfaces play an important role in software engineering. As an application grows, updates and changes to the code base become more difficult to manage. More often than not, you wind up having classe
Link: https://realpython.com/courses/interfaces-object-oriented-design-principles/
Interfaces play an important role in software engineering. As an application grows, updates and changes to the code base become more difficult to manage. More often than not, you wind up having classe
Realpython
Python Interfaces: Object-Oriented Design Principles – Real Python
In this video course, you'll explore how to use a Python interface. You'll come to understand why interfaces are so useful and learn how to implement formal and informal interfaces in Python. You'll also examine the differences between Python interfaces and…
Python Bytes: #386 Major releases abound
Link: https://pythonbytes.fm/episodes/show/386/major-releases-abound
<strong>Topics covered in this episode:</strong><br>
<ul>
<li><a href="https://numpy.org/news/#numpy-20-release-date-june-16"><strong>NumPy 2.0 release date is June 16</strong></a></li>
<li><a href=
Link: https://pythonbytes.fm/episodes/show/386/major-releases-abound
<strong>Topics covered in this episode:</strong><br>
<ul>
<li><a href="https://numpy.org/news/#numpy-20-release-date-june-16"><strong>NumPy 2.0 release date is June 16</strong></a></li>
<li><a href=
pythonbytes.fm
Major releases abound
News and announcements from the Python community for the week of Jun 4th, 2024
PyCoder’s Weekly: Issue #632 (June 4, 2024)
Link: https://pycoders.com/issues/632
#632 – JUNE 4, 2024 View in Browser » What’s a Python Hashable Object? You can ignore reading about hashable objects for quite a bit. But eventually, it’s worth having an idea of what they are.
Link: https://pycoders.com/issues/632
#632 – JUNE 4, 2024 View in Browser » What’s a Python Hashable Object? You can ignore reading about hashable objects for quite a bit. But eventually, it’s worth having an idea of what they are.
Pycoders
PyCoder’s Weekly | Issue #632
Issue #632 of the PyCoder’s Weekly newsletter, published June 4, 2024.
Armin Ronacher: Your Node is Leaking Memory? setTimeout Could be the Reason
Link: http://lucumr.pocoo.org/2024/6/5/node-timeout
This is mostly an FYI for node developers. The issue being discussed in
this post has caused us
quite a bit of pain.
It has to do with how node deals with timeouts. In short: you can
very easily cre
Link: http://lucumr.pocoo.org/2024/6/5/node-timeout
This is mostly an FYI for node developers. The issue being discussed in
this post has caused us
quite a bit of pain.
It has to do with how node deals with timeouts. In short: you can
very easily cre
Armin Ronacher's Thoughts and Writings
Your Node is Leaking Memory? setTimeout Could be the Reason
How node’s timeout objects are potential sources of memory leaks.
Real Python: Python String Formatting: Available Tools and Their Features
Link: https://realpython.com/python-string-formatting/
String formatting is the process of applying a proper format to a given value while using this value to create a new string through interpolation. Python has several tools for string interpolation tha
Link: https://realpython.com/python-string-formatting/
String formatting is the process of applying a proper format to a given value while using this value to create a new string through interpolation. Python has several tools for string interpolation tha
Realpython
Python String Formatting: Available Tools and Their Features – Real Python
In this tutorial, you'll learn about the main tools for string formatting in Python, as well as their strengths and weaknesses. These tools include f-strings, the .format() method, and the modulo operator.
Real Python: Quiz: Python String Formatting: Available Tools and Their Features
Link: https://realpython.com/quizzes/python-string-formatting-update/
Test your understanding of Python’s tools for string formatting, including f-strings, the .format() method, and the modulo operator.
Take this quiz after reading our Python String Formatting: Availabl
Link: https://realpython.com/quizzes/python-string-formatting-update/
Test your understanding of Python’s tools for string formatting, including f-strings, the .format() method, and the modulo operator.
Take this quiz after reading our Python String Formatting: Availabl
Realpython
Python String Formatting: Available Tools and Their Features Quiz – Real Python
You can take this quiz to test your understanding of the available tools for string formatting in Python, as well as their strengths and weaknesses. These tools include f-strings, the .format() method, and the modulo operator.
Django Weblog: PyCharm & Django Campaign 2024
Link: https://www.djangoproject.com/weblog/2024/jun/06/pycharm-django-campaign-2024/
The Django Software Foundation's biggest fundraising event of the year is here!
Get 30% off PyCharm, Support Django
Each year, our friends at JetBrains, the creators of PyCharm, run an incredible deal
Link: https://www.djangoproject.com/weblog/2024/jun/06/pycharm-django-campaign-2024/
The Django Software Foundation's biggest fundraising event of the year is here!
Get 30% off PyCharm, Support Django
Each year, our friends at JetBrains, the creators of PyCharm, run an incredible deal
Django Project
PyCharm & Django Campaign 2024
Posted by Catherine Holmes on June 6, 2024
The Python Show: 43 - Python Image Processing with Pillow
Link: https://www.pythonshow.com/p/43-python-image-processing-with-pillow
In this episode, Mike has Alex Clark on the show. Alex is the leading developer of the fork of the Python Imaging Library (PIL), known as Pillow.We chatted about the following topics:The origins of Pi
Link: https://www.pythonshow.com/p/43-python-image-processing-with-pillow
In this episode, Mike has Alex Clark on the show. Alex is the leading developer of the fork of the Python Imaging Library (PIL), known as Pillow.We chatted about the following topics:The origins of Pi
Pythonshow
43 - Python Image Processing with Pillow
Special Guest: Alex Clark
Python Engineering at Microsoft: Python in Visual Studio Code – June 2024 Release
Link: https://devblogs.microsoft.com/python/python-in-visual-studio-code-june-2024-release/
We’re excited to announce the June 2024 release of the Python and Jupyter extensions for Visual Studio Code!
This release includes the following announcements:
VS Code Native REPL for Python with Int
Link: https://devblogs.microsoft.com/python/python-in-visual-studio-code-june-2024-release/
We’re excited to announce the June 2024 release of the Python and Jupyter extensions for Visual Studio Code!
This release includes the following announcements:
VS Code Native REPL for Python with Int
Microsoft News
Python in Visual Studio Code – June 2024 Release
The June 2024 release of the Python and Jupyter extensions for Visual Studio Code are now available. This month's updates include an experimental Python REPL with Intellisense and syntax highlighting, and pytest improvements on the testing rewrite. Keep reading…
Python Software Foundation: Affirm your PSF Membership Voting Status
Link: https://pyfound.blogspot.com/2024/06/affirm-your-psf-membership-voting-status.html
Every PSF voting-eligible Member (Supporting, Managing, Contributing, and Fellow) needs to affirm their membership to vote in this year’s election.If you wish to vote in this year’s election, you must
Link: https://pyfound.blogspot.com/2024/06/affirm-your-psf-membership-voting-status.html
Every PSF voting-eligible Member (Supporting, Managing, Contributing, and Fellow) needs to affirm their membership to vote in this year’s election.If you wish to vote in this year’s election, you must
Python Software Foundation Blog
Affirm your PSF Membership Voting Status
Every PSF voting-eligible Member (Supporting, Managing, Contributing, and Fellow) needs to affirm their membership to vote in this year’s el...
Python Insider: Python 3.13.0 beta 2 released
Link: https://pythoninsider.blogspot.com/2024/06/python-3130-beta-2-released.html
I'm pleased to announce the release of Python 3.13 beta 2.https://www.python.org/downloads/release/python-3130b2/ This is a beta preview of Python 3.13
Python 3.13 is still in development. This releas
Link: https://pythoninsider.blogspot.com/2024/06/python-3130-beta-2-released.html
I'm pleased to announce the release of Python 3.13 beta 2.https://www.python.org/downloads/release/python-3130b2/ This is a beta preview of Python 3.13
Python 3.13 is still in development. This releas
Blogspot
Python Insider: Python 3.13.0 beta 2 released
Python Insider: Python 3.12.4 released
Link: https://pythoninsider.blogspot.com/2024/06/python-3124-released.html
I'm pleased to announce the release of Python 3.12.4:https://www.python.org/downloads/release/python-3124/ This is the third maintenance release of Python 3.12
Python 3.12 is the newest major release
Link: https://pythoninsider.blogspot.com/2024/06/python-3124-released.html
I'm pleased to announce the release of Python 3.12.4:https://www.python.org/downloads/release/python-3124/ This is the third maintenance release of Python 3.12
Python 3.12 is the newest major release
Blogspot
Python Insider: Python 3.12.4 released
Real Python: The Real Python Podcast – Episode #207: Decomposing Software Problems & Avoiding the Trap of Clever Code
Link: https://realpython.com/podcasts/rpp/207/
How do you effectively break a software problem into individual steps? What are signs you're writing overly clever code? Christopher Trudeau is back on the show this week, bringing another batch of Py
Link: https://realpython.com/podcasts/rpp/207/
How do you effectively break a software problem into individual steps? What are signs you're writing overly clever code? Christopher Trudeau is back on the show this week, bringing another batch of Py
Realpython
Episode #207: Decomposing Software Problems & Avoiding the Trap of Clever Code – The Real Python Podcast
How do you effectively break a software problem into individual steps? What are signs you're writing overly clever code? Christopher Trudeau is back on the show this week, bringing another batch of PyCoder's Weekly articles and projects.
Anwesha Das: Event Driven Ansible, what, why and how?
Link: http://anweshadas.in/event-driven-ansible-what-why-and-how/
Ansible Playbooks is the known term, now there is a new term which is being floted in the project, which is Ansible Rulebooks. Today we are going to discuss about Ansible&aposs journey from Playbook t
Link: http://anweshadas.in/event-driven-ansible-what-why-and-how/
Ansible Playbooks is the known term, now there is a new term which is being floted in the project, which is Ansible Rulebooks. Today we are going to discuss about Ansible&aposs journey from Playbook t
Law Explained India
Event Driven Ansible, what, why and how?
Ansible Playbooks is the known term, now there is a new term which is being floted in the project, which is Ansible Rulebooks. Today we are going to discuss about Ansible's journey from Playbook to Rulebook rather Playbook with Rulebook.
What is Event…
What is Event…
Matt Layman: Polish, Debug Toolbar, Email Signals - Building SaaS with Python and Django #193
Link: https://www.mattlayman.com/blog/2024/polish-debug-toolbar-email-signals-building-saas-with-python-and-django-193/
In this episode, we first added the Django debug toolbar to aid future troubleshooting. Then, following some PR cleanup, I added django-denied as the authorization framework for the site. With those t
Link: https://www.mattlayman.com/blog/2024/polish-debug-toolbar-email-signals-building-saas-with-python-and-django-193/
In this episode, we first added the Django debug toolbar to aid future troubleshooting. Then, following some PR cleanup, I added django-denied as the authorization framework for the site. With those t
Matt Layman
Polish, Debug Toolbar, Email Signals - Building SaaS with Python and Django #193
In this episode, we first added the Django debug toolbar to aid future troubleshooting. Then, following some PR cleanup, I added django-denied as the authorization framework for the site. With those two packages integrated, I did some polishing work and began…