Planet Python RSS
216 subscribers
16.9K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
Python Engineering at Microsoft: Python in Visual Studio Code – April 2023 Release

Link: https://devblogs.microsoft.com/python/python-in-visual-studio-code-april-2023-release/

We’re excited to announce that the April 2023 release of the Python and Jupyter extensions for Visual Studio Code are now available!
This release includes the following announcements:

Data Wrangler a
TestDriven.io: Building an Intelligent Education Platform with OpenAI, ChatGPT, and Django

Link: https://testdriven.io/blog/python-openai-chatgpt/

This tutorial shows how to build an intelligent educational platform using OpenAI APIs and Django.
PyBites: In tough times leverage the people around you

Link: https://pybit.es/articles/in-tough-times-leverage-the-people-around-you/

Welcome back to the Pybites Podcast.
Watch here:


Or listen here:

This week we have a follow up to episode 101 in which we spoke about being in control in these difficult times of corporate layoffs.
Talk Python to Me: #409: Privacy as Code with Fides

Link: https://talkpython.fm/episodes/show/409/privacy-as-code-with-fides

We all know that privacy regulations are getting more strict. And that many of our users no longer believe that "privacy is dead". But for even medium-sized organizations, actually tracking how we are
Kushal Das: Dear pep582

Link: https://kushaldas.in/posts/dear-pep582.html


Dear pep582,
By now, you know that your idea has been
rejected,
but it came with
suggestions
for any future ideas. You thought you could be more useful if everyone gets it in
the same way, but that w
Matthew Wright: A Gentle Introduction to the Python Match Statement

Link: https://www.wrighters.io/intro-to-python-match-statement/

When new features are added to Python, sometimes it can take a while to learn about and start using the feature. For me, the Python match statement (a.k.a. structural pattern matching) is a good examp
PyCharm: Join the Livestream: “What’s New in PyCharm 2023.1”

Link: https://blog.jetbrains.com/pycharm/2023/04/whats-new-in-pycharm-2023-1/

PyCharm 2023.1 is out, and we want to walk you through this version’s highlights.
JetBrains Developer Advocates Paul Everitt, Jodie Burchell, and Helen Scott will go through the benefits that the new
Django Weblog: Django 4.2 released

Link: https://www.djangoproject.com/weblog/2023/apr/03/django-42-released/

The Django team is happy to announce the release of Django 4.2.
This version has been designated as a long-term support (LTS) release, which
means that security and data loss fixes will be applied for
Mike Driscoll: PyDev of the Week: Eduardo Blancas

Link: https://www.blog.pythonlibrary.org/2023/04/03/pydev-of-the-week-eduardo-blancas/

This week we welcome Eduardo Blancas (@edublancas) as our PyDev of the Week! Eduardo is the co-founder of Ploomber. You can see what Eduardo is working on over on GitHub.
Let’s spend some time getting
Real Python: Python's del: Remove References From Scopes and Containers

Link: https://realpython.com/python-del-statement/

Python’s del statement will allow you to remove names and references from different namespaces. It’ll also allow you to delete unneeded items from your lists and keys from your dictionaries. If you wa
Lucas Cimon: fpdf2 latest new features

Link: https://chezsoi.org/lucas/blog/fpdf2-latest-new-features.html

I wrote my latest post on fpdf2 almost a year ago.
As we just released a new version, v2.7,
this is the time to mention some recent additions to this library! 😊
This article will present some of the m
PyCharm: Create a Django App in PyCharm

Link: https://blog.jetbrains.com/pycharm/2023/04/create-a-django-app-in-pycharm/

The core idea of Django is to let developers build their applications quickly. When you master this framework, the path from concept to production-ready web application will be a short one. However, i
CodersLegacy: PyQt6 Themes using CSS Stylesheets

Link: https://coderslegacy.com/pyqt6-themes-using-css-stylesheets/

In this article, we will explore how to use CSS stylesheets to create themes for your PyQt6 application.
PyQt6 is a powerful library that allows developers to create desktop applications using Python.
Stack Abuse: How to Set the Time Zone in Django

Link: https://stackabuse.com/how-to-set-the-time-zone-in-django/

Introduction
Django is a popular web framework used by developers to build high-performance web applications quickly and easily. However, if you are developing a web application that needs to handle t
PyCoder’s Weekly: Issue #571 (April 4, 2023)

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

#571 – APRIL 4, 2023 View in Browser » Build a Maze Solver in Python Using Graphs In this step-by-step project, you’ll build a maze solver in Python using graph algorithms from the NetworkX libr
Test and Code: 197: Python project trove classifiers - Do you need this bit of pyproject.toml metadata?

Link: https://testandcode.com/197

Classifiers are one bit of Python project metadata that predates PyPI.
Classifiers are weird.
They were around in setuptools days, and are still here with pyproject.toml.

What are they?
Why do we n
Python Circle: Working with MySQL and Python3

Link: https://pythoncircle.com/post/783/working-with-mysql-and-python3/

Working with MySQL 5.7 and 8.0 using Python 3, Connecting with MySQL using Python, Inserting and Deleting data from MySQL using Python, Data processing with MySQL and Python
Python Circle: Working with MySQL and Python3 - Part 2

Link: https://pythoncircle.com/post/785/working-with-mysql-and-python3-part-2/

Working with MySQL and Python, MySQL connector and Python3, Dropping and Truncating a table in MySQL using Pythong, How to insert multiple records to MySQL using Python