Planet Python RSS
213 subscribers
16.8K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
IslandT: Matplotlib Tutorial — Start to create a simple graph

Link: https://islandtropicaman.com/wp/2022/10/30/matplotlib-tutorial-start-to-create-a-simple-graph/

Matplotlib is a third-party python library that you can use to create various graphs as well as charts to present your data. This is the starting article of the 10 parts series of the Matplotlib libra
PyPy: The PyPy Blog Turns 15 Years

Link: https://www.pypy.org/posts/2022/10/blog-15-years.html

Exactly 15 years ago today we wrote the first blog post on the PyPy blog!
Over the years, we have written 423 posts, from the shortest to the
longest. In 2021 we moved from blogger to our own domain.
Podcast.__init__: Add Configuration Best Practices To Your Application In An Afternoon With Dynaconf

Link: https://www.pythonpodcast.com/dynaconf-application-configuration-management-episode-383/

Application configuration is a deceptively complex problem. Everyone who is building a project that gets used more than once will end up needing to add configuration to control aspects of behavior or
STX Next: Hugging Face: Basic Task Tutorial for Solving Text Classification Issues

Link: https://www.stxnext.com/blog/hugging-face-tutorial/




Natural language processing is one of the leading domains of AI that involves enabling computers to understand human language.
IslandT: Matplotlib Tutorial — Create a bar chart

Link: https://islandtropicaman.com/wp/2022/10/31/matplotlib-tutorial-create-a-bar-chart/

In this Matplotlib example, I am going to create a bar chart to represent the quantity of the wear I have sold recently.

import matplotlib.pyplot as plt

fig, ax = plt.subplots()

wear = ['Slipper',
Mike Driscoll: PyDev of the Week: Vinay Sajip

Link: https://www.blog.pythonlibrary.org/2022/10/31/pydev-of-the-week-vinay-sajip/

This week we welcome Vinay Sajip as our PyDev of the Week! Vinay is a core developer of the Python language. Vinay is also a core contributor for python-gnupg, a Python API for the GNU Privacy Guard a
Python for Beginners: How to Search for a String in a Text File Through Python

Link: https://www.pythonforbeginners.com/strings/how-to-search-for-a-string-in-a-text-file-through-python

In this post, we’ll explore the various methods used to search for a string in a text file. Using examples written in Python 3, we’ll demonstrate how to open and read both text files and CSV files. On
Real Python: Python's doctest: Document and Test Your Code at Once

Link: https://realpython.com/python-doctest/

Are you interested in writing usage examples for your code that work as documentation and test cases simultaneously? If your answer is yes, then Python’s doctest module is for you. This module provide
Zero to Mastery: Python Monthly Newsletter 💻🐍

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

35th issue of the Python Monthly Newsletter! Read by 25,000+ Python developers every month. This monthly Python newsletter covers the latest Python news so that you stay up-to-date with the industry a
Python Morsels: SyntaxError: invalid syntax

Link: https://www.pythonmorsels.com/syntaxerror-invalid-syntax/

Python's invalid syntax error message comes up often, especially when you're first learning Python. What usually causes this error and how can you fix it?


Table of contents

What is a SyntaxError in
Django Weblog: Django bugfix release: 4.1.3

Link: https://www.djangoproject.com/weblog/2022/nov/01/bugfix-release/

Today we've issued the 4.1.3 bugfix release.
The release package and checksums are available from our downloads page, as well as from the Python Package Index. The PGP key ID used for this release is
IslandT: Matplotlib Tutorial — Create a scatter chart

Link: https://islandtropicaman.com/wp/2022/11/01/matplotlib-tutorial-create-a-scatter-chart/

In this Matplotlib example, I am going to create a scatter chart that shows the quantity and the type of shoes I have sold recently. The scatter chart below will show dots that represent the quantity
Real Python: Python Basics: Scopes

Link: https://realpython.com/courses/python-basics-scopes/

On your Python journey, you’ve probably learned about functions and loops. To fully understand functions and loops in Python, you need to be familiar with the issue of scope.
By the end of this video
Juri Pakaste: Git worktrees helper

Link: https://juripakaste.fi/worktrees/

I recently became an avid user of Git worktrees. However, the command line interface to them is about as great as Git command line interfaces always are. Just git worktree add is a confusing maze of o
PyCoder’s Weekly: Issue #549 (Nov. 1, 2022)

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

#549 – NOVEMBER 1, 2022 View in Browser » How to Get the First Match From a Python List or Iterable In this tutorial you’ll learn about the best ways to get the first match from a Python list or
Python Bytes: #308 Conference season is heating up

Link: https://pythonbytes.fm/episodes/show/308/conference-season-is-heating-up

<p><strong>Watch the live stream:</strong></p>

<a href='https://www.youtube.com/watch?v=rQgMQH4QWFc' style='font-weight: bold;'>Watch on YouTube</a><br>
<br>

<p><strong>About the show</strong></p>
IslandT: Overrides function in TypeScript

Link: https://islandtropicaman.com/wp/2022/11/02/overrides-function-in-typescript/

Below TypeScript example will show you how to override a function. In order to override a function you will need to provide a function with its parameter of type any and its return value also of type
IslandT: Python Example — Find the future sum of money with Python

Link: https://islandtropicaman.com/wp/2022/11/02/python-example-find-the-future-sum-of-money-with-python/

In this python example, I will create a simple python function to calculate the compound interest which will then be used to calculate the future sum of money (F) if the present sum of money (P) and t
PyCharm: How to Debug a Jupyter Notebook in PyCharm

Link: https://blog.jetbrains.com/pycharm/2022/11/how-to-debug-a-jupyter-notebook-in-pycharm/

Making mistakes in your code is a pain, and debugging in Jupyter notebooks can get messy. While Jupyter helpfully displays the full Python traceback, which highlights the lines that have failed, worki