Real Python: The Real Python Podcast – Episode #213: Constraint Programming & Exploring Python's Built-in Functions
Link: https://realpython.com/podcasts/rpp/213/
What are discrete optimization problems? How do you solve them with constraint programming in Python? Christopher Trudeau is back on the show this week, bringing another batch of PyCoder's Weekly arti
Link: https://realpython.com/podcasts/rpp/213/
What are discrete optimization problems? How do you solve them with constraint programming in Python? Christopher Trudeau is back on the show this week, bringing another batch of PyCoder's Weekly arti
Realpython
Episode #213: Constraint Programming & Exploring Python's Built-in Functions – The Real Python Podcast
What are discrete optimization problems? How do you solve them with constraint programming in Python? Christopher Trudeau is back on the show this week, bringing another batch of PyCoder's Weekly articles and projects
PyPy: Mining JIT traces for missing optimizations with Z3
Link: https://www.pypy.org/posts/2024/07/mining-jit-traces-missing-optimizations-z3.html
In my last post I've described how to use Z3 to find simple local peephole
optimization patterns
for the integer operations in PyPy's JIT. An example is int_and(x, 0) ->
0. In this post I want to scal
Link: https://www.pypy.org/posts/2024/07/mining-jit-traces-missing-optimizations-z3.html
In my last post I've described how to use Z3 to find simple local peephole
optimization patterns
for the integer operations in PyPy's JIT. An example is int_and(x, 0) ->
0. In this post I want to scal
PyPy
Mining JIT traces for missing optimizations with Z3
In my last post I've described how to use Z3 to find simple local peephole
optimization patterns
for the integer operations in PyPy's JIT. An example is int_and(x, 0) ->
0. In this post I want to scal
optimization patterns
for the integer operations in PyPy's JIT. An example is int_and(x, 0) ->
0. In this post I want to scal
Matt Layman: Activation Email Job - Building SaaS #196
Link: https://www.mattlayman.com/blog/2024/activation-email-job-building-saas-196/
In this episode, we chatted about managing dependencies and the cost of maintenance. Then we got into some feature work and began building a job that will send users an email as reminder to activate t
Link: https://www.mattlayman.com/blog/2024/activation-email-job-building-saas-196/
In this episode, we chatted about managing dependencies and the cost of maintenance. Then we got into some feature work and began building a job that will send users an email as reminder to activate t
Matt Layman
Activation Email Job - Building SaaS #196
In this episode, we chatted about managing dependencies and the cost of maintenance. Then we got into some feature work and began building a job that will send users an email as reminder to activate their account shortly before it expires.
Python Morsels: Using "else" in a comprehension
Link: https://www.pythonmorsels.com/comprehension-with-else/
While list comprehesions in Python don't support the else keyword directly, conditional expressions can be embedded within list comprehension.
Table of contents
Do list comprehensions support else
Link: https://www.pythonmorsels.com/comprehension-with-else/
While list comprehesions in Python don't support the else keyword directly, conditional expressions can be embedded within list comprehension.
Table of contents
Do list comprehensions support else
Pythonmorsels
Using "else" in a comprehension
While list comprehesions in Python don't support the else keyword directly, conditional expressions can be embedded within list comprehension.
Python Software Foundation: Announcing the 2024 PSF Board Election & Proposed Bylaw Change Results!
Link: https://pyfound.blogspot.com/2024/07/announcing-2024-psf-board-election.html
The 2024 election for the PSF Board and proposed Bylaws changes created an opportunity for conversations about the PSF's work to serve the global Python community. We appreciate community members' per
Link: https://pyfound.blogspot.com/2024/07/announcing-2024-psf-board-election.html
The 2024 election for the PSF Board and proposed Bylaws changes created an opportunity for conversations about the PSF's work to serve the global Python community. We appreciate community members' per
Python Software Foundation Blog
Announcing the 2024 PSF Board Election & Proposed Bylaw Change Results!
The 2024 election for the PSF Board and proposed Bylaws changes created an opportunity for conversations about the PSF's work to serve the g...
Python Software Foundation: PSF Board update on improvements to the PSF Grants program
Link: https://pyfound.blogspot.com/2024/07/psf-board-update-on-improvements-to-psf.html
In December 2023 we received an open letter from a coalition of organizers from the pan-African Python community asking the PSF to address concerns and frustrations around our Grants Program. The lett
Link: https://pyfound.blogspot.com/2024/07/psf-board-update-on-improvements-to-psf.html
In December 2023 we received an open letter from a coalition of organizers from the pan-African Python community asking the PSF to address concerns and frustrations around our Grants Program. The lett
Python Software Foundation Blog
PSF Board update on improvements to the PSF Grants program
In December 2023 we received an open letter from a coalition of organizers from the pan-African Python community asking the PSF to address ...
Zato Blog: LDAP and Active Directory as Python API Services
Link: https://zato.io/en/blog/ldap-active-directory.html
LDAP and Active Directory as Python API Services
2024-07-22, by Dariusz Suchojad
LDAP and Active Directory often play key a role in the management of a company's network resources yet it is not
Link: https://zato.io/en/blog/ldap-active-directory.html
LDAP and Active Directory as Python API Services
2024-07-22, by Dariusz Suchojad
LDAP and Active Directory often play key a role in the management of a company's network resources yet it is not
Seth Michael Larson: YouTube without YouTube Shorts
Link: http://sethmlarson.dev/youtube-without-youtube-shorts?date=2024-07-22
YouTube without YouTube Shorts
Link: http://sethmlarson.dev/youtube-without-youtube-shorts?date=2024-07-22
YouTube without YouTube Shorts
Seth Michael Larson
YouTube without YouTube Shorts
Back in October 2023 I wrote about how “For You” wasn't for me,
and my dislike for infinitely-scrolling algorithmically-suggested content.
In that post I mentioned that I removed YouTube from my ph...
and my dislike for infinitely-scrolling algorithmically-suggested content.
In that post I mentioned that I removed YouTube from my ph...
Real Python: Logging in Python
Link: https://realpython.com/python-logging/
Recording relevant information during the execution of your program is a good practice as a Python developer when you want to gain a better understanding of your code. This practice is called logging,
Link: https://realpython.com/python-logging/
Recording relevant information during the execution of your program is a good practice as a Python developer when you want to gain a better understanding of your code. This practice is called logging,
Realpython
Logging in Python – Real Python
If you use Python's print() function to get information about the flow of your programs, then logging is the natural next step for you. This tutorial will guide you through creating your first logs and show you ways to curate them to grow with your projects.
Talk Python to Me: #471: Learning and teaching Pandas
Link: https://talkpython.fm/episodes/show/471/learning-and-teaching-pandas
If you want to get better at something, often times the path is pretty clear. If you get better at swimming, you go to the pool and practice your strokes and put in time doing the laps. If you want to
Link: https://talkpython.fm/episodes/show/471/learning-and-teaching-pandas
If you want to get better at something, often times the path is pretty clear. If you get better at swimming, you go to the pool and practice your strokes and put in time doing the laps. If you want to
talkpython.fm
Learning and teaching Pandas
If you want to get better at something, often times the path is pretty clear. If you get better at swimming, you go to the pool and practice your strokes and put in time doing the laps. If you want to get better at mountain biking, hit the trails and work…
Peter Bengtsson: Converting Celsius to Fahrenheit round-up
Link: http://www.peterbe.com/plog/converting-celsius-to-fahrenheit-round-up
In the last couple of days, I've created variations of a simple algorithm to demonstrate how Celcius and Fahrenheit seem to relate to each other if you "mirror the number".
It wasn't supposed to be ab
Link: http://www.peterbe.com/plog/converting-celsius-to-fahrenheit-round-up
In the last couple of days, I've created variations of a simple algorithm to demonstrate how Celcius and Fahrenheit seem to relate to each other if you "mirror the number".
It wasn't supposed to be ab
Peterbe
Converting Celsius to Fahrenheit round-up - Peterbe.com
DataWars.io: Free AP Computer Science A Practice Exercises | DataWars
Link: https://www.datawars.io/articles/free-ap-computer-science-a-practice-exercises
Link: https://www.datawars.io/articles/free-ap-computer-science-a-practice-exercises
www.datawars.io
Free AP Computer Science A Practice Exercises
Find our collection of free and interactive exercises to practice before your AP Computer Science A exam
Christoph Schiessl: How to Serve a Directory of Static Files with FastAPI
Link: https://bugfactory.io/articles/how-to-serve-a-directory-of-static-files-with-fastapi/
Learn how to serve a static site using FastAPI. Perfect for locally testing statically generated websites, for instance, with `httpie`.
Link: https://bugfactory.io/articles/how-to-serve-a-directory-of-static-files-with-fastapi/
Learn how to serve a static site using FastAPI. Perfect for locally testing statically generated websites, for instance, with `httpie`.
BugFactory
How to Serve a Directory of Static Files with FastAPI
Learn how to serve a static site using FastAPI. Perfect for locally testing statically generated websites, for instance, with `httpie`.
Real Python: pandas GroupBy: Grouping Real World Data in Python
Link: https://realpython.com/courses/pandas-groupby-real-world-data/
Whether you’ve just started working with pandas and want to master one of its core capabilities, or you’re looking to fill in some gaps in your understanding about .groupby(), this course will help yo
Link: https://realpython.com/courses/pandas-groupby-real-world-data/
Whether you’ve just started working with pandas and want to master one of its core capabilities, or you’re looking to fill in some gaps in your understanding about .groupby(), this course will help yo
Realpython
pandas GroupBy: Grouping Real World Data in Python – Real Python
In this course, you'll learn how to work adeptly with the pandas GroupBy while mastering ways to manipulate, transform, and summarize data. You'll work with real-world datasets and chain GroupBy methods together to get data into an output that suits your…
Mike Driscoll: ANN: ObjectListView3 for wxPython
Link: https://www.blog.pythonlibrary.org/2024/07/23/ann-objectlistview3-for-wxpython/
ObjectListView is a third-party wxPython widget that wraps the wx.ListCtrl. I have used it for over 10 years in quite a few different GUI applications because it works much nicer than wx.ListCtrl does
Link: https://www.blog.pythonlibrary.org/2024/07/23/ann-objectlistview3-for-wxpython/
ObjectListView is a third-party wxPython widget that wraps the wx.ListCtrl. I have used it for over 10 years in quite a few different GUI applications because it works much nicer than wx.ListCtrl does
Mouse Vs Python
ANN: ObjectListView3 for wxPython - Mouse Vs Python
ObjectListView is a third-party wxPython widget that wraps the wx.ListCtrl. I have used it for over 10 years in quite a few different GUI applications
Python Bytes: #393 Dare enter the Bash dungeon?
Link: https://pythonbytes.fm/episodes/show/393/dare-enter-the-bash-dungeon
<strong>Topics covered in this episode:</strong><br>
<ul>
<li><a href="https://marimo.io"><strong>Marimo:</strong></a><a href="https://marimo.io"> </a><a href="https://marimo.io"><strong>“Future</st
Link: https://pythonbytes.fm/episodes/show/393/dare-enter-the-bash-dungeon
<strong>Topics covered in this episode:</strong><br>
<ul>
<li><a href="https://marimo.io"><strong>Marimo:</strong></a><a href="https://marimo.io"> </a><a href="https://marimo.io"><strong>“Future</st
pythonbytes.fm
Dare enter the Bash dungeon?
News and announcements from the Python community for the week of Jul 23rd, 2024
PyCoder’s Weekly: Issue #639 (July 23, 2024)
Link: https://pycoders.com/issues/639
#639 – JULY 23, 2024 View in Browser » Asyncio gather() Handle Exceptions The asyncio.gather() function takes an optional argument return_exceptions which changes the behavior of the co-routine
Link: https://pycoders.com/issues/639
#639 – JULY 23, 2024 View in Browser » Asyncio gather() Handle Exceptions The asyncio.gather() function takes an optional argument return_exceptions which changes the behavior of the co-routine
Pycoders
PyCoder’s Weekly | Issue #639
Issue #639 of the PyCoder’s Weekly newsletter, published July 23, 2024.
Quansight Labs Blog: Introducing the 2024 Labs Internship Program Cohort
Link: https://labs.quansight.org/blog/2024-interns
Meet the interns joining us for our third-annual summer internship.
Link: https://labs.quansight.org/blog/2024-interns
Meet the interns joining us for our third-annual summer internship.
labs.quansight.org
Introducing the 2024 Labs Internship Program Cohort
Meet the interns joining us for our third-annual summer internship.
Real Python: Quiz: Hugging Face Transformers
Link: https://realpython.com/quizzes/hugging-face-transformers/
In this quiz, you’ll test your understanding of Hugging Face Transformers. This library is a popular choice for working with transformer models in natural language processing tasks, computer vision, a
Link: https://realpython.com/quizzes/hugging-face-transformers/
In this quiz, you’ll test your understanding of Hugging Face Transformers. This library is a popular choice for working with transformer models in natural language processing tasks, computer vision, a
Realpython
Hugging Face Transformers Quiz – Real Python
In this quiz, you'll test your understanding of the Hugging Face Transformers library. This library is a popular choice for working with transformer models in natural language processing tasks, computer vision, and other machine learning applications.
Django Weblog: Django 5.1 release candidate 1 released
Link: https://www.djangoproject.com/weblog/2024/jul/24/django-51-rc1/
Django 5.1 release candidate 1 is the final opportunity for you to
try out a kaleidoscope of improvements before Django 5.1 is released.
The release candidate stage marks the string freeze and the cal
Link: https://www.djangoproject.com/weblog/2024/jul/24/django-51-rc1/
Django 5.1 release candidate 1 is the final opportunity for you to
try out a kaleidoscope of improvements before Django 5.1 is released.
The release candidate stage marks the string freeze and the cal
Django Project
Django 5.1 release candidate 1 released
Posted by Natalia Bidart on July 24, 2024
Real Python: Hugging Face Transformers: Leverage Open-Source AI in Python
Link: https://realpython.com/huggingface-transformers/
Transformers is a powerful Python library created by Hugging Face that allows you to download, manipulate, and run thousands of pretrained, open-source AI models. These models cover multiple tasks acr
Link: https://realpython.com/huggingface-transformers/
Transformers is a powerful Python library created by Hugging Face that allows you to download, manipulate, and run thousands of pretrained, open-source AI models. These models cover multiple tasks acr
Realpython
Hugging Face Transformers: Leverage Open-Source AI in Python – Real Python
As the AI boom continues, the Hugging Face platform stands out as the leading open-source model hub. In this tutorial, you'll get hands-on experience with Hugging Face and the Transformers library in Python.