Planet Python RSS
216 subscribers
16.9K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
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
PyCoder’s Weekly: Issue #542 (Sept. 13, 2022)

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

#542 – SEPTEMBER 13, 2022 View in Browser » List Comprehensions Are More Powerful Than You Think List comprehensions have a lot of depth. This article takes you beyond the basics and explains ne
Python for Beginners: Select Row From a Dataframe in Python

Link: https://www.pythonforbeginners.com/basics/select-row-from-a-dataframe-in-python

Pandas dataframes are used to handle tabular data in Python. In this article, we will discuss how to select a row from a dataframe in Python. We will also discuss how we can use boolean operators to s
Real Python: How to Replace a String in Python

Link: https://realpython.com/replace-string-python/

If you’re looking for ways to remove or replace all or part of a string in Python, then this tutorial is for you. You’ll be taking a fictional chat room transcript and sanitizing it using both the .re
The Python Coding Blog: Functions in Python are Like a Coffee Machine

Link: https://thepythoncodingbook.com/2022/09/14/functions-in-python-are-like-coffee-machines/

Functions in Python are one of those topics for beginners! Most understand what functions are at a basic level. However, there’s much more detail and nuance to defining and calling functions in Python
Python Does What?!: Mock Everything

Link: https://www.pythondoeswhat.com/2022/09/mock-everything.html

 A mock object is meant to simulate any API for the purposes of testing.The python standard library includes MagicMock.>>> from unittest.mock import MagicMock>>> mock = MagicMock()>>> mock.a<MagicMock
IslandT: Python Tutorial — Chapter 4

Link: https://islandtropicaman.com/wp/2022/09/15/python-tutorial-chapter-4/

In this tutorial, I am going to show you how to work with strings in Python!
How to represent a string
Strings in python are surrounded by either single or double quotation mark.
aname = ‘Jimmy’
anoth