Planet Python RSS
216 subscribers
16.9K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
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
Read the Docs: Read the Docs newsletter - September 2022

Link: https://blog.readthedocs.com/newsletter-september-2022/


Our focus for August has continued to be around marketing and community outreach.
We continue to better understand how our customers view our product,
and work with them to use it well.
We’re working
Podcast.__init__: Standardizing On Python For All Software Projects At Ascend.io

Link: https://www.pythonpodcast.com/ascend-python-standardization-episode-377/

Every software project is subject to a series of decisions and tradeoffs. One of the first decisions to make is which programming language to use. For companies where their product is software, this i
John Ludhi/nbshare.io: Tweepy AttributeError API object has no attribute search

Link:
https://www.nbshare.io/notebook/265183032/Tweepy-AttributeError-API-object-has-no-attribute-search/

How To Fix Tweepy AttributeError API object has no attribute search

Make sure you have latest version of tweepy installed.

In [7]:

pip install tweepy

Let us check the v
PyCharm: Webinar: Writing REST With Django and Ninja With Christopher Trudeau

Link: https://blog.jetbrains.com/pycharm/2022/09/writing-rest-with-django-and-ninja/

Django Ninja is a FastAPI-inspired library for turning your Django views into REST API end-points. This webinar will show you how to get started with Django Ninja, how the interface interacts with Dja
IslandT: Python Tutorial — Chapter 3

Link: https://islandtropicaman.com/wp/2022/09/13/python-tutorial-chapter-3/

In this chapter, I am going to show you all how to create a python variable.
Python variable does not have a fixed type which means you can actually change the variable type by first assigning it to