Planet Python RSS
217 subscribers
16.9K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
PyCharm: Best PyCharm Plugins 2024

Link: https://blog.jetbrains.com/pycharm/2024/03/best-pycharm-plugins/

PyCharm is designed to be used straight out of the box, but you can customize it further by installing the right plugins. 
In this article, we’ll be highlighting the top PyCharm plugins that can bring
Real Python: Python's __all__: Packages, Modules, and Wildcard Imports

Link: https://realpython.com/python-all-attribute/

Python has something called wildcard imports, which look like from module import *. This type of import allows you to quickly get all the objects from a module into your namespace. However, using this
EuroPython: EuroPython March 2024 Newsletter

Link: https://blog.europython.eu/europython-march-2024-newsletter/

Hey ya 👋 hope you are having a good start to 2024 ❤️It&aposs been a dog’s age since we last spoke. In case you don’t know the reason for our hiatus: we took Elmo’s question of “How is everybody doing?
TechBeamers Python: Generate Random IP Address (IPv4/IPv6) in Python

Link: https://techbeamers.com/python-generate-random-ip-address/

This tutorial dives into the world of generating random IP addresses in Python. It’ll first walk you through the concept of IP addresses and describe the two main versions (IPv4 and IPv6). After that,
CodersLegacy: Exploring Data Tables in Tkinter with PandasTable

Link: https://coderslegacy.com/exploring-data-tables-in-tkinter-with-pandastable/

In this tutorial, we will delve into the powerful combination of Pandas and Tkinter through the PandasTable library. PandasTable provides a convenient way to display and interact with pandas DataFrame
PyCharm: Deploying Django Apps in Kubernetes

Link: https://blog.jetbrains.com/pycharm/2024/03/deploying-django-apps-in-kubernetes/

As an open-source container orchestration platform that automates deployment, scaling, and load balancing, Kubernetes offers unparalleled resilience and flexibility in the management of your Django ap
Real Python: Creating Asynchronous Tasks With Celery and Django

Link: https://realpython.com/courses/asynchronous-tasks-celery-django/

You’ve built a shiny Django app and want to release it to the public, but you’re worried about time-intensive tasks that are part of your app’s workflow. You don’t want your users to have a negative e
PyCoder’s Weekly: Issue #619 (March 5, 2024)

Link: https://pycoders.com/issues/619

#619 – MARCH 5, 2024 View in Browser » Duck Typing in Python: Writing Flexible and Decoupled Code In this tutorial, you’ll learn about duck typing in Python. It’s a typing system based on object
Data School: Get started with conda environments 🤝

Link: https://www.dataschool.io/intro-to-conda-environments/

In a previous post, I explained the differences between conda, Anaconda, and Miniconda.
I said that you can use conda to manage virtual environments:

If you’re not familiar with virtual environments,
Python GUIs: Drag & Drop Widgets with PySide6 — Sort widgets visually with drag and drop in a container

Link: https://www.pythonguis.com/faq/pyside6-drag-drop-widgets/

I had an interesting question from a reader of my PySide6 book, about how to handle dragging and dropping of widgets in a container showing the dragged widget as it is moved.

I'm interested in managi
death and gravity: reader 3.12 released – split search, track changes

Link: https://death.andgravity.com/reader-3-12

Hi there!
I'm happy to announce version 3.12 of reader, a Python feed reader library.
What's new? #
Here are the highlights since reader 3.10.
Split the search index into a separate database #
The ful
eGenix.com: PyDDF Python Spring Sprint 2024

Link: https://www.egenix.com/company/news/PyDDF-Spring-Sprint-2024

The following text is in German, since we're announcing a Python sprint in Düsseldorf, Germany.

Ankündigung
Python Meeting Herbst Sprint 2024 in
Düsseldorf

Samstag, 09.03.2024, 10:00-18:00 Uhr
Sonnt
TechBeamers Python: How to Connect to PostgreSQL in Python

Link: https://techbeamers.com/python-connect-postgresql/

PostgreSQL is a powerful open-source relational database management system. In this tutorial, we’ll explore all the steps you need to connect PostgreSQL from Python code. From setting up a PostgreSQL
PyBites: Case Study: GitHub Copilot and the deceiving ladder

Link: https://pybit.es/articles/case-study-github-copilot-and-the-deceiving-ladder/


I recently gave a workshop at the Developer Open Space un-conference about GitHub Copilot and how developers can benefit from these AI assistants. I was fairly new to Copilot myself, having only trie
PyBites: Build a route planner for maps using Python

Link: https://pybit.es/articles/build-a-route-planner-for-maps-using-python/

In this article I use the metric system, where 1 meter = 3.28 feet. I also talk about highways. Here I use the definition in British English, where highway refers to any path with a public right of ac
PyBites: Why You Should Never Put Your Virtualenv Inside Your Project’s Folder

Link: https://pybit.es/articles/why-you-should-never-put-your-virtualenv-inside-your-projects-folder/

Virtual environments are vital if you’re developing Python apps or just writing some Python scripts. They allow you to isolate different app requirements to prevent conflicts and keep your global OS e
Real Python: The Real Python Podcast – Episode #195: Building a Healthy Developer Mindset While Learning Python

Link: https://realpython.com/podcasts/rpp/195/

How do you get yourself unstuck when facing a programming problem? How do you develop a positive developer mindset while learning Python? This week on the show, Bob Belderbos from Pybites is here to t
PyCharm: PyCharm 2024.1 EAP 8: Enhanced Support for Terraform

Link: https://blog.jetbrains.com/pycharm/2024/03/pycharm-2024-1-eap-8/

PyCharm 2024.1 EAP 8 is now available, providing a sneak peek into some exciting new features planned for the next major release. A notable update of this build is enhanced support for Terraform.
You