Planet Python RSS
213 subscribers
16.8K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
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
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
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
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
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
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
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
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
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
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
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
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
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
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?
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
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
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