Planet Python RSS
216 subscribers
16.9K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
Ben Cook: Development containers in VS Code: a quick start guide

Link: https://sparrow.dev/devcontainers-quickstart/

If you’re building production ML systems, dev containers are the killer feature of VS Code. Dev containers give you full VS Code functionality inside a Docker container. This lets you unify your dev a
PyBites: A super simple Zettelkasten note taking system

Link: https://pybit.es/articles/a-super-simple-zettelkasten-note-taking-system/

Yesterday I found this amazing gist that got me running with Zettelkasten in no time
Check out this short YouTube video where the author demos this workflow:


As the Zen of Python wisely taught us:
IslandT: Python Tutorial – Chapter 1

Link: https://islandtropicaman.com/wp/2022/09/08/python-tutorial-chapter-1/

Python is the most popular programming language at the moment, which means if you want to create any applications (either desktop, web, or mobile phone) you will need to use python or other programmin
Nicola Iarocci: The Docker Event Monitor

Link: https://nicolaiarocci.com/the-docker-event-monitor/

I added a new tool to my amateurish DevOps toolbox. Developed in the open by Tom Williams, the Docker Event Monitor is a “tiny container that monitors the local Docker event system in real-time and se
Armin Ronacher: You can't Do That: Abstracting over Ownership in Rust with Type Inference (and GATs Don't Help)

Link: http://lucumr.pocoo.org/2022/9/8/abstracting-over-ownership

A few years ago I wrote about
how to get better at Rust by knowing when what you want to do is impossible. Sadly in
many ways I don't learn from my own mistakes and I keep running into a
particular i
Anarcat: Complaint about Canada's phone cartel

Link: https://anarc.at/blog/2022-09-08-fido-crtc-complaint/

I have just filed a complaint with the CRTC about my phone
provider's outrageous fees. This is a copy of the complaint.
I am traveling to Europe, specifically to Ireland, for a 6 days for a
work meeti
The Three of Wands: Wall vs CPU time, or the cost of asyncio Tasks

Link: https://threeofwands.com/careful-with-tasks/

Performing I/O concurrently is one of asyncio&aposs superpowers (if not its main superpower). This is accomplished, directly or indirectly (through helpers like asyncio.gather), by the creation and us
Real Python: The Real Python Podcast – Episode #124: Exploring Recursion in Python With Al Sweigart

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

Have you wanted to understand recursion and how to use it in Python? Are you familiar with the call stack and how it relates to tracebacks? This week on the show, Al Sweigart talks about his new book,
Python for Beginners: Create Pandas Dataframe in Python

Link: https://www.pythonforbeginners.com/basics/create-pandas-dataframe-in-python

Pandas dataframe is the primary data structure for handling tabular data in Python. In this article, we will discuss different ways to create a dataframe in Python using the pandas module.
Table of Co
PyCharm: Visualizing Geospatial Data in Python

Link: https://blog.jetbrains.com/pycharm/2022/09/visualizing-geospatial-data-in-python/


Today we are interviewing Adam Symington, author of the PythonMaps project, which is dedicated to using Python to develop beautiful yet very informative geospatial data visualizations.
Adam is a geos
EuroPython: 🐍 Community Call for Venues - EuroPython 2023

Link: https://blog.europython.eu/community-call-for-venues-europython-2023/

In recent years, the EuroPython Society (EPS), the organisers of the EuroPython conference series, have been discussing how to make the conference more accessible for the community and affordable to a
Kushal Das: khata, under WASI

Link: https://kushaldas.in/posts/khata-under-wasi.html


While I am learning about WebAssembly slowly, I was
also trying to figure out where all I can use it. That is the way I general
learn all new things. So, as a start, I thought of compiling my static
Armin Ronacher: You Can't Do That: Abstracting over Ownership in Rust with Higher-Rank Type Bounds. Or Can You?

Link: http://lucumr.pocoo.org/2022/9/11/abstracting-over-ownership

A few years ago I wrote about
how to get better at Rust by knowing when what you want to do is impossible. Sadly in
many ways I don't learn from my own mistakes and I keep running into a
particular i
IslandT: Python Tutorial — Chapter 2

Link: https://islandtropicaman.com/wp/2022/09/11/python-tutorial-chapter-2/

In this chapter, I am going to go through three subjects, 1) The Python print method 2) Python Indentation 3) Python comment.
Python Print Method
Python print method will print a word or phrase which
John Ludhi/nbshare.io: How To Parse Yahoo Finance News Feed With Python

Link:
https://www.nbshare.io/notebook/195657108/How-To-Parse-Yahoo-Finance-News-Feed-With-Python/

How To Parse Yahoo Finance News Feed With Python

In [1]: import json

To parse rss feed, we will use feedparser package.

Let us import the package first.

In [2]:
John Ludhi/nbshare.io: Crawl Websites Using Python

Link: https://www.nbshare.io/notebook/821307749/Crawl-Websites-Using-Python/








Crawl Websites Using Python








In this notebook, I will go over a simpler Python scraper.








How to Parse a website using Python LXML








We will use Python 'requests' module to o
Python Insider: Python 3.11.0rc2 is now available

Link: https://pythoninsider.blogspot.com/2022/09/python-3110rc2-is-now-available.html

This is the second release candidate of Python 3.11https://www.python.org/downloads/release/python-3110rc2/This release, 3.11.0rc2, is the last preview before the final release of Python 3.11.0 on 202
Python for Beginners: Pandas Dataframe Index in Python

Link: https://www.pythonforbeginners.com/basics/pandas-dataframe-index-in-python

Pandas dataframes are one of the most used data structures for data analysis and machine learning tasks in Python. In this article, we will discuss how to create and delete an index from a pandas data
Mike Driscoll: Announcing: Teach Me Python

Link: https://www.blog.pythonlibrary.org/2022/09/12/announcing-teach-me-python/

Teach Me Python is a brand new website about the Python Programming language. Teach Me Python is a subscription-based service that will teach you Python using courses, eBooks, tutorials, and videos. T
Real Python: Custom Python Lists: Inheriting From list vs UserList

Link: https://realpython.com/inherit-python-list/

At some point in your Python coding adventure, you may need to create custom list-like classes with modified behavior, new functionalities, or both. To do this in Python, you can inherit from an abstr