Hynek Schlawack: How to Ditch Codecov for Python Projects
Link: https://hynek.me/articles/ditch-codecov-python/
Codecov’s unreliability breaking CI on my open source projects has been a constant source of frustration for me for years. I have found a way to enforce coverage over a whole GitHub Actions build matr
Link: https://hynek.me/articles/ditch-codecov-python/
Codecov’s unreliability breaking CI on my open source projects has been a constant source of frustration for me for years. I have found a way to enforce coverage over a whole GitHub Actions build matr
Hynek Schlawack
How to Ditch Codecov for Python Projects
Codecov’s unreliability breaking CI on my open source projects has been a constant source of frustration for me for years. I have found a way to enforce coverage over a whole GitHub Actions build matrix that doesn’t rely on third-party services.
Sebastian Witowski: Inlining Functions
Link: https://switowski.com/blog/inlining-functions/
<p>In this episode of <a href="https://switowski.com/blog/writing-faster-python-intro/">Writing Faster Python</a>, we will check if we can make the code faster by doing exactly the opposite o
Link: https://switowski.com/blog/inlining-functions/
<p>In this episode of <a href="https://switowski.com/blog/writing-faster-python-intro/">Writing Faster Python</a>, we will check if we can make the code faster by doing exactly the opposite o
Sebastian Witowski
Inlining Functions
Running one big blob of code is often faster than splitting your code into well-separated functions. But there are other ways you can improve the speed of your code without sacrificing its readability.
Python for Beginners: PySpark Count Distinct Values in One or Multiple Columns
Link: https://www.pythonforbeginners.com/pyspark/pyspark-count-distinct-values-in-one-or-multiple-columns
While handling data in pyspark, we often need to find the count of distinct values in one or multiple columns in a pyspark dataframe. In this article, we will discuss how to count distinct values in o
Link: https://www.pythonforbeginners.com/pyspark/pyspark-count-distinct-values-in-one-or-multiple-columns
While handling data in pyspark, we often need to find the count of distinct values in one or multiple columns in a pyspark dataframe. In this article, we will discuss how to count distinct values in o
PythonForBeginners.com
PySpark Count Distinct Values in One or Multiple Columns - PythonForBeginners.com
PySpark Count Distinct Values in One or Multiple Columns will help you improve your python skills with easy to follow examples and tutorials.
Mike Driscoll: PyDev of the Week: Sanskar Jethi
Link: https://www.blog.pythonlibrary.org/2023/07/24/pydev-of-the-week-sanskar-jethi/
This week we welcome Sanskar Jethi (@sansyrox) as our PyDev of the Week! Sanskar is the author of Robyn, a super fast Python web framework with a runtime written in Rust. Sanskar is also the creator o
Link: https://www.blog.pythonlibrary.org/2023/07/24/pydev-of-the-week-sanskar-jethi/
This week we welcome Sanskar Jethi (@sansyrox) as our PyDev of the Week! Sanskar is the author of Robyn, a super fast Python web framework with a runtime written in Rust. Sanskar is also the creator o
Mouse Vs Python
PyDev of the Week: Sanskar Jethi - Mouse Vs Python
This week we welcome Sanskar Jethi (@sansyrox) as our PyDev of the Week! Sanskar is the author of Robyn, a super fast Python web framework with a runtime
Real Python: Python & APIs: A Winning Combo for Reading Public Data
Link: https://realpython.com/python-api/
Knowing how to consume an API is one of those magical skills that, once mastered, will crack open a whole new world of possibilities, and consuming APIs using Python is a great way to learn such a ski
Link: https://realpython.com/python-api/
Knowing how to consume an API is one of those magical skills that, once mastered, will crack open a whole new world of possibilities, and consuming APIs using Python is a great way to learn such a ski
Realpython
Python & APIs: A Winning Combo for Reading Public Data – Real Python
In this tutorial, you'll learn what APIs are and how to consume them using Python. You'll also learn some core concepts for working with APIs, such as status codes, HTTP methods, the requests library, and much more. You'll also see a few examples of real…
Talk Python to Me: #423: Solving 10 different simulation problems with Python
Link: https://talkpython.fm/episodes/show/423/solving-10-different-simulation-problems-with-python
Python is used for a wide variety of software projects. One area it's really gained a huge amount of momentum is in the computational space (including data science). On this episode we welcome back Al
Link: https://talkpython.fm/episodes/show/423/solving-10-different-simulation-problems-with-python
Python is used for a wide variety of software projects. One area it's really gained a huge amount of momentum is in the computational space (including data science). On this episode we welcome back Al
talkpython.fm
Solving 10 different simulation problems with Python
Python is used for a wide variety of software projects. One area it's really gained a huge amount of momentum is in the computational space (including data science). On this episode we welcome back Allen Downey to dive into a particular slice of this space:…
PyCharm: PyCharm 2023.2 Release Candidate Is Out
Link: https://blog.jetbrains.com/pycharm/2023/07/2023-2-rc/
You can get the latest build from our website, through the free Toolbox App, or via snaps for Ubuntu.
To use this build, you need to have an active subscription to PyCharm Professional.
Download PyCh
Link: https://blog.jetbrains.com/pycharm/2023/07/2023-2-rc/
You can get the latest build from our website, through the free Toolbox App, or via snaps for Ubuntu.
To use this build, you need to have an active subscription to PyCharm Professional.
Download PyCh
The JetBrains Blog
PyCharm 2023.2 Release Candidate Is Out | The PyCharm Blog
You can get the latest build from our website, through the free Toolbox App, or via snaps for Ubuntu.
To use this build, you need to have an active subscription to PyCharm Professiona
To use this build, you need to have an active subscription to PyCharm Professiona
Python GUIs: Customizing Your Tkinter App Windows with Properties and Settings
Link: https://www.pythonguis.com/tutorials/customized-windows-tkinter/
Different desktop applications have different design requirements. If you look at the applications on your computer, you will see that most of them have different window designs. Some applications, li
Link: https://www.pythonguis.com/tutorials/customized-windows-tkinter/
Different desktop applications have different design requirements. If you look at the applications on your computer, you will see that most of them have different window designs. Some applications, li
Python GUIs
Customizing Your Tkinter App Windows with Properties and Settings
In this tutorial, you'll learn how to tweak and customize windows and forms in your Tkinter apps. Different desktop applications have different design requirements.
Real Python: Socket Programming in Python Part 1: Handling Connections
Link: https://realpython.com/courses/python-sockets-part-1/
Sockets and the socket API are used to send messages across a network. They provide a form of inter-process communication (IPC). The network can be a logical, local network to the computer, or one tha
Link: https://realpython.com/courses/python-sockets-part-1/
Sockets and the socket API are used to send messages across a network. They provide a form of inter-process communication (IPC). The network can be a logical, local network to the computer, or one tha
Realpython
Sign-In – Real Python
Sign in to your Real Python account.
Łukasz Langa: Weekly Report, EuroPython 2023
Link: https://lukasz.langa.pl/b2f7ec83-a65d-4ab8-aa03-0212a299d7fd/
Our new Security Developer in Residence is out and about, and publishes weekly updates on what he’s up to. That inspires me to resume doing the equivalent of those updates. And what better opportunity
Link: https://lukasz.langa.pl/b2f7ec83-a65d-4ab8-aa03-0212a299d7fd/
Our new Security Developer in Residence is out and about, and publishes weekly updates on what he’s up to. That inspires me to resume doing the equivalent of those updates. And what better opportunity
lukasz.langa.pl
Weekly Report, EuroPython 2023 - Łukasz Langa
Our new Security Developer in Residence is out and about, and publishes weekly updates on what he’s up to. That inspires me to resume doing the equivalent of those updates. And what better opportunity to do that than on the heels of EuroPython 2023!
PyCoder’s Weekly: Issue #587 (July 25, 2023)
Link: https://pycoders.com/issues/587
#587 – JULY 25, 2023 View in Browser » Creating Web Maps From Your Data With Python Folium You’ll learn how to create web maps from data using Folium. The package combines Python’s data-wranglin
Link: https://pycoders.com/issues/587
#587 – JULY 25, 2023 View in Browser » Creating Web Maps From Your Data With Python Folium You’ll learn how to create web maps from data using Folium. The package combines Python’s data-wranglin
Pycoders
PyCoder’s Weekly | Issue #587
Issue #587 of the PyCoder’s Weekly newsletter, published July 25, 2023.
Real Python: Python 3.12 Preview: More Intuitive and Consistent F-Strings
Link: https://realpython.com/python312-f-strings/
Every new Python version brings many changes, updates, fixes, and new features. Python 3.12 will be the next minor version and is now in the beta phase. In this version, the core team has been working
Link: https://realpython.com/python312-f-strings/
Every new Python version brings many changes, updates, fixes, and new features. Python 3.12 will be the next minor version and is now in the beta phase. In this version, the core team has been working
Realpython
Python 3.12 Preview: More Intuitive and Consistent F-Strings – Real Python
In this tutorial, you'll preview one of the upcoming features of Python 3.12, which introduces a new f-string syntax formalization and implementation. The new implementation lifts some restrictions and limitations that affect f-string literals in Python versions…
PyCharm: PyCharm 2023.2: New Live Templates for Django, Black Formatter Integration, Run Anything, and AI Assistant
Link: https://blog.jetbrains.com/pycharm/2023/07/2023-2/
Get the most out of your developer experience with the latest PyCharm features. With this release, you can now type your Django code faster with the new live templates, reformat your code in one click
Link: https://blog.jetbrains.com/pycharm/2023/07/2023-2/
Get the most out of your developer experience with the latest PyCharm features. With this release, you can now type your Django code faster with the new live templates, reformat your code in one click
The JetBrains Blog
PyCharm 2023.2: New Live Templates for Django, Black Formatter Integration, Run Anything, and AI Assistant | The PyCharm Blog
With this build, you can now type your Django code faster with the new live templates, reformat your code in one click with the integrated Black formatter, and generate commit messages with the help of AI Assistant. Read on below for the full list of enhancements!
Python Bytes: #345 Some Big Time Releases
Link: https://pythonbytes.fm/episodes/show/345/some-big-time-releases
<a href='https://www.youtube.com/watch?v=Wt4HX6rFfQc' 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/345/some-big-time-releases
<a href='https://www.youtube.com/watch?v=Wt4HX6rFfQc' 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
Some Big Time Releases
News and announcements from the Python community for the week of Jul 26th, 2023
EuroPython: EuroPython 2023: Sponsor Job Listings
Link: https://blog.europython.eu/sponsor-job-listings-europython-2023/
As EuroPython 2023 has concluded we would like to extend a heartfelt thanks to the community and our sponsors for their support throughout the event! We would like to take this opportunity to share wi
Link: https://blog.europython.eu/sponsor-job-listings-europython-2023/
As EuroPython 2023 has concluded we would like to extend a heartfelt thanks to the community and our sponsors for their support throughout the event! We would like to take this opportunity to share wi
EuroPython Blog
EuroPython 2023: Sponsor Job Listings
As EuroPython 2023 has concluded we would like to extend a heartfelt thanks to the community and our sponsors for their support throughout the event! We would like to take this opportunity to share with you some exciting job profiles from our sponsors. OptiverAs…
Talk Python to Me: #424: Shiny for Python
Link: https://talkpython.fm/episodes/show/424/shiny-for-python
If you want to share your data science results as interactive web apps, you could learn Flask or Django and a bunch of other web technologies. Or, you could pick up one of the powerful frameworks for
Link: https://talkpython.fm/episodes/show/424/shiny-for-python
If you want to share your data science results as interactive web apps, you could learn Flask or Django and a bunch of other web technologies. Or, you could pick up one of the powerful frameworks for
talkpython.fm
Shiny for Python
If you want to share your data science results as interactive web apps, you could learn Flask or Django and a bunch of other web technologies. Or, you could pick up one of the powerful frameworks for deploying data science specifically. And if you're searching…
Kushal Das: My talk in RustNL 2023
Link: https://kushaldas.in/posts/my-talk-in-rustnl-2023.html
On May 10th, I attended my first ever Rust conference, RustNL
2023. I reached there the night before. My talk was
the 3rd one in the morning.
The title of my talk was Using Rust to write Python
mod
Link: https://kushaldas.in/posts/my-talk-in-rustnl-2023.html
On May 10th, I attended my first ever Rust conference, RustNL
2023. I reached there the night before. My talk was
the 3rd one in the morning.
The title of my talk was Using Rust to write Python
mod
Hynek Schlawack: Waiting in asyncio
Link: https://hynek.me/articles/waiting-in-asyncio/
One of the main appeals of using Python’s asyncio is being able to fire off many coroutines and run them concurrently. How many ways do you know for waiting for their results?
Link: https://hynek.me/articles/waiting-in-asyncio/
One of the main appeals of using Python’s asyncio is being able to fire off many coroutines and run them concurrently. How many ways do you know for waiting for their results?
Hynek Schlawack
Waiting in asyncio
One of the main appeals of using Python’s asyncio is being able to fire off many coroutines and run them concurrently. How many ways do you know for waiting for their results?
Real Python: The Real Python Podcast – Episode #166: Differentiating the Versions of Python & Unlocking IPython's Magic
Link: https://realpython.com/podcasts/rpp/166/
What are all the different versions of Python? You may have heard of Cython, Brython, PyPy, or others and wondered where they fit into the Python landscape. This week on the show, Christopher Trudeau
Link: https://realpython.com/podcasts/rpp/166/
What are all the different versions of Python? You may have heard of Cython, Brython, PyPy, or others and wondered where they fit into the Python landscape. This week on the show, Christopher Trudeau
Realpython
Episode #166: Differentiating the Versions of Python & Unlocking IPython's Magic – The Real Python Podcast
What are all the different versions of Python? You may have heard of Cython, Brython, PyPy, or others and wondered where they fit into the Python landscape. This week on the show, Christopher Trudeau is here, bringing another batch of PyCoder's Weekly articles…
Abhijeet Pal: How to Use @action Decorator in Django Rest Framework
Link: http://djangocentral.com/how-to-use-action-decorator-in-django-rest-framework/
Django Rest Framework (DRF) provides powerful tools to build robust APIs. While the standard CRUD operations are usually sufficient, there are cases where you might need to add custom actions or endpo
Link: http://djangocentral.com/how-to-use-action-decorator-in-django-rest-framework/
Django Rest Framework (DRF) provides powerful tools to build robust APIs. While the standard CRUD operations are usually sufficient, there are cases where you might need to add custom actions or endpo
Djangocentral
How to Use @action Decorator in Django Rest Framework
Django Rest Framework (DRF) provides powerful tools to build robust APIs. While the standard CRUD operations are usually sufficient, there are cases where yo
Abhijeet Pal: Django ORM Cheatsheet: Mastering Database Operations in Django
Link: http://djangocentral.com/django-orm-cheatsheet/
Django, as a powerful and popular web framework, comes equipped with an impressive Object-Relational Mapping (ORM) system that simplifies database interactions and abstracts away much of the complexit
Link: http://djangocentral.com/django-orm-cheatsheet/
Django, as a powerful and popular web framework, comes equipped with an impressive Object-Relational Mapping (ORM) system that simplifies database interactions and abstracts away much of the complexit
Djangocentral
Django ORM Cheatsheet: Mastering Database Operations in Django
Django, as a powerful and popular web framework, comes equipped with an impressive Object-Relational Mapping (ORM) system that simplifies database interactio