Planet Python RSS
216 subscribers
16.9K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
Kay Hayen: Nuitka this week #15

Link: https://nuitka.net/posts/nuitka-this-week-15.html

This is a weekly update, or at least it’s supposed to be of what’s going
on in Nuitka land, for you to learn about ongoing developments and
important changes to the project.
In this issue, I am first
Real Python: Building Enumerations With Python’s enum

Link: https://realpython.com/courses/python-enum/

Some programming languages, such as Java and C++, have built-in support for a data type called enumerations, commonly referred to as enums. Enums enable you to create sets of logically related constan
Python⇒Speed: Profiling your Numba code

Link: https://pythonspeed.com/articles/numba-profiling/

pre {
font-size: 90% !important;
}


If you’re writing numeric Python code, Numba can be a great way to speed up your program.
By compiling a subset of Python to machine code, Numba lets you write
ListenData: 4 Ways to Correct Grammar with Python

Link: https://www.listendata.com/2024/01/4-ways-to-correct-grammar-with-python.html

This tutorial explains various methods for checking and correcting grammatical errors using Python.

To read this article in full, please click hereThis post appeared first on ListenData
Awesome Python Applications: Duplicity

Link: https://gitlab.com/duplicity/duplicity


Duplicity: Encrypted bandwidth-efficient backup tool, using the rsync algorithm.
Links:

Repo
Home
Docs
PyCoder’s Weekly: Issue #614 (Jan. 30, 2024)

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

#614 – JANUARY 30, 2024 View in Browser » Create a Tic-Tac-Toe Python Game Engine With an AI Player In this video course, you’ll create a universal game engine in Python for tic-tac-toe with two
Zero to Mastery: Python Monthly Newsletter 💻🐍

Link: https://zerotomastery.io/blog/python-monthly-newsletter-january-2024/?utm_source=python-rss-feed

49th issue of Andrei Neagoie's must-read monthly Python Newsletter: Weekend Project Idea, Python + A.I., Why Type_Checking, and much more. Read the full newsletter to get up-to-date with everything yo
Programiz: Python Program to Compute the Power of a Number

Link: https://www.programiz.com/python-programming/examples/power

In this example, you will learn to compute the power of a number.
Python Software Foundation: Kicking off 2024 strong, thanks to our community!

Link: https://pyfound.blogspot.com/2024/01/kicking-off-2024-strong.html

We are starting off the year feeling energized and supported, thanks to each of you who shared or donated to our year-end fundraiser and membership drive. We raised a whopping $43,000 through our PyCh
Real Python: Python's Format Mini-Language for Tidy Strings

Link: https://realpython.com/python-format-mini-language/

When you’re doing string interpolation in your Python code, you often need to format the interpolated values to meet some formatting requirements. To do this, Python provides what is known as the form
The Python Coding Blog: Why Should Only The Grown-Ups Have Fun With Python?

Link: https://thepythoncodingbook.com/2024/01/31/codetoday-unlimited-coding-in-python-for-teenagers-children/

If you’re reading this, you’re possibly familiar with my Python work for adults. What you may not know is that most of my time over the past 8 years has been devoted to teaching Python to children and
TechBeamers Python: Python Reduce() for Reducing List, String, Tuple With Examples

Link: https://www.techbeamers.com/python-reduce/

The reduce() function in Python is handy for combining or filtering values in a list. It works by repeatedly using a function on pairs of elements, gradually producing a final result. For example, if
Python Engineering at Microsoft: Python in Visual Studio Code – February 2024 Release

Link: https://devblogs.microsoft.com/python/python-in-visual-studio-code-february-2024-release/

We’re excited to announce the February 2024 release of the Python and Jupyter extensions for Visual Studio Code!
This release includes the following announcements:

Python debugger extension installed
Real Python: The Real Python Podcast – Episode #190: Great Starting Points for Contributing to Open Source

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

What's it like to sit down for your first developer sprint at a conference? How do you find an appropriate issue to work on as a new open-source contributor? This week on the show, author and software
TechBeamers Python: How to Fetch the List of Popular GitHub Repos

Link: https://www.techbeamers.com/how-to-fetch-the-list-of-popular-github-repos/

Introduction In this guide, we’ll walk you through a straightforward Python script that taps into the GitHub API to fetch the list of popular repositories. We’ll be using the requests module, a handy