Planet Python RSS
217 subscribers
16.9K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
PyBites: Overcoming Imposter Syndrome: 9 Tips to Boost Your Confidence as a Developer

Link: https://pybit.es/articles/9-developer-confidence-tips/

Watch us here:


Or listen here:

In this podcast episode we discuss 9 tips to build confidence as a developer, drawing from our own experience + coaching 100+ (aspiring) Python developers.
We cover t
Gocept Weblog: Ready, set, sprint: Earl Zope invites again

Link: https://blog.gocept.com/2023/05/12/ready-set-sprint-earl-zope-invites-again/

Earl Zope is already a long time inhabitant of the Python 3 wonderland. Living here for some years with the help of his friends, he sometimes looks back to the “good old times” but mostly enjoys his c
Real Python: The Real Python Podcast – Episode #156: Virtual Environment Structure & Surveying the Packaging Ecosystem

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

How do Python virtual environments work under the hood? How does understanding these concepts help you with managing them for your projects? This week on the show, CPython core developer Brett Cannon
Python for Beginners: List vs Dictionary in Python

Link: https://www.pythonforbeginners.com/basics/list-vs-dictionary-in-python

Python lists and dictionaries are two of Python’s most used data structures. In this article, we will discuss list vs dictionary in Python to compare definition, syntax, mutability, and performance.
T
Stack Abuse: Guide to Lists in Python

Link: https://stackabuse.com/guide-to-lists-in-python/

Introduction
Python, as one of the most versatile and widely-used programming languages, boasts a plethora of built-in data structures that make it an excellent choice for developers of all skill leve
Go Deh: Pythons chained conditional expressions (and Fizz Buzz)

Link: http://paddy3118.blogspot.com/2023/05/pythons-chained-conditional-expression.html

 I was lurking on the LinkedIn Python forum and someone brought up FizzBuzz again and I thought; "Why not try a solution that closely follows the description"The description given was:Print a range of
"Mathspp Pydon'ts": Properties | Pydon't 🐍

Link: https://mathspp.com/blog/pydonts/properties


Learn how to use properties to add dynamic behaviour to your attributes.

(If you are new here and have no idea what a Pydon't is, you may want to read the
Pydon't Manifesto.)
Introduction
Properties
Mike Driscoll: PyDev of the Week: Thomas Fan

Link: https://www.blog.pythonlibrary.org/2023/05/15/pydev-of-the-week-thomas-fan/

This week we welcome Thomas Fan (@thomasjpfan) as our PyDev of the Week! Thomas is a core developer of the scikit-learn, a machine learning package for Python.
If you’d like to see what else Thomas is
Python for Beginners: List vs Set in Python

Link: https://www.pythonforbeginners.com/basics/list-vs-set-in-python

Sets and lists are used in Python to store and manipulate data in a program. This article discusses list vs set in Python to compare their performance, syntax, mutability, and repetition.
Table of Con
ThisHosting.Rocks: Best Python Hosting

Link: https://thishosting.rocks/best-python-hosting/

Python is a versatile programming language that has gained immense popularity in recent years. With its ease of use, scalability, and flexibility, Python has become the go-to choice for building web a
Real Python: Using and Creating Global Variables in Your Python Functions

Link: https://realpython.com/python-use-global-variable-in-function/

A global variable is a variable that you can use from any part of a program, including within functions. Using global variables inside your Python functions can be tricky. You’ll need to differentiate
CodersLegacy: Running Headless Selenium in Python (2023)

Link: https://coderslegacy.com/running-headless-selenium-in-python-2023/

In the world of web testing and automation, Selenium has become a popular tool for developers and testers alike. It allows us to simulate user interactions with web applications, automate repetitive t
Talk Python to Me: #415: Future of Pydantic and FastAPI

Link: https://talkpython.fm/episodes/show/415/future-of-pydantic-and-fastapi

The release of Pydantic 2.0, its partial rewrite in Rust, and its refactoring into Pydantic core and top-level Pydantic in Python is big news. In fact, the alpha of Pydantic 2 was just released. Of co
CodersLegacy: How to Install Webdriver_manager Chrome in Selenium Python?

Link: https://coderslegacy.com/install-webdriver_manager-chrome-selenium-python/

In this Python tutorial, we will learn how to install Selenium for Chrome using the Webdriver_manager module.
Selenium is a popular open-source framework used for automating web browsers. It provides
Marcos Dione: unintuitive-expressions

Link: http://www.grulic.org.ar/~mdione/glob//posts/unintuitive-expressions/

One of the aphorisms of the Zen of Python says:

Explicit is better than implicit.

Go dehl writes this code to solve FizzBuzz:
for i in range(1, 101):
print(&aposFB&apos if not i % 15 else &aposF
PyCharm: The Early Access Program for PyCharm 2023.2 Is Open!

Link: https://blog.jetbrains.com/pycharm/2023/05/2023-2-eap-1/

The Early Access Program starts today! This program offers you an early glimpse of the new features and improvements expected to land in the next version. If you’re not yet familiar with the EAP conce
Django Weblog: May 2023 Grants

Link: https://www.djangoproject.com/weblog/2023/may/15/may-2023-grants/


I wanted to share today some of the great things that DSF donations go towards. This month was a particularly big month in grant approval, so I wanted to highlight some of those, and with it, some of
death and gravity: Why you should still read the docs

Link: https://death.andgravity.com/output

Do you feel you're fighting your tools?
Do you feel you're relying too much on autocomplete and inline documentation?
...always kinda guessing when using libraries?
Or maybe not, but getting things do
Django Weblog: Django 5.x Steering Council Election Results

Link: https://www.djangoproject.com/weblog/2023/may/16/django-5x-steering-council-election-results/

The Steering Council for the Django 5.x release cycle will be:

Simon Charette
Andrew Godwin
Adam Johnson
James Bennett

Congratulations to the new council, and a special thank you for the departing m
PyPy: RPython-based emulator speeds up RISC-V simulation over 15x

Link: https://www.pypy.org/posts/2023/05/rpython-used-to-speed-up-risc-v-simulation-over-15x.html

In cooperation with RISC-V International, who funded a part of this project,
we recently created a workflow to
use RPython to take a Sail RISC-V model and automatically create a RISC-V ISA
emulator fr