Async Simple and fast RSS parser module.
Project description
Ultra FAST RSS
A simple ASYNC RSS parser. To make retrieving RSS feeds ultra fast.
Table of Contents
Status
[!CAUTION] This is module works and is used! But should be used with care! Extensive exception validation is left out on purpose for now in the code.
Installation
pip install ultrafastrss
Usage
In your Python program call the async function with a (large) list of URLs:
process_rssfeeds(urls)
To validate and see the working:
Create a simple demo program, create a python file fastrss_demo.py like (just copy-paste):
from ultrafastrss.ultrafastrss import process_rssfeeds
import asyncio
urls = [
'https://nocomplexity.com/rss',
'https://www.eff.org/rss/updates.xml',
'https://www.freebsd.org/news/rss.xml',
'https://ubuntu.com/blog/feed',
'https://nlnet.nl/feed.atom',
'https://j3s.sh/feed.atom',
'https://blog.research.google/atom.xml'
]
# Run the async RSS feed processing, all results are as json stored in the variable results
results = asyncio.run(process_rssfeeds(urls))
print(results)
After running this demo in a terminal by doing:
python ultrafastrss_demo.py
You should seen directly the result of all RSS information gathered!
You can do all kind of fun things with the returned json object which contains the crucial parts from the parsed rss or atom feeds!
Benchmarking
I did some benchmarking test with feedparser, a module that is widely used within many Python programs for parsing rss feeds.
Results are minimal 10 times faster with 500 URLs.
License
ultrafastrss is distributed under the terms of the GPL-3.0-or-later license.
Architecture
This ultrafastrss parser is designed to parse RSS or Atom return JSON data. The parsing is delegating to specific parsers functions (rss_parser, atom_parser or rdf_parser). Only the attributes title, link and date are retrieved.
The key design principle for this parser is to retrieve JSON data from a significant number of feeds asynchronously.
Feed content or summary is not parsed on purpose. This is also not a RSS reader. But by clicking the retrieved link, the retrieved item can be viewed in a browser.
The fields that are parsed and stored for every feed are:
"title": "Exphormer: Scaling transformers for graph-structured data",
"link": "http://blog.research.google/2024/01/exphormer-scaling-transformers-for.html",
"date": "2024-01-23",
"tags": [
"Deep Learning",
"Graphs"
All kind but edge cases are left out on purpose to keep the needed code simple. Creating a generic module for RSS/ATOM parsing is not simple. So design decision is to only incorporate logic that I need for the URLs I use.
Contribute
Great you want to contribute!
Simple Guidelines:
- Questions, Feature Requests, Bug Reports please use on the
Github Issue Tracker.
[!NOTE] This is module works and is used! But it is in pre-release status. Extensive exception validation is left out on purpose for now in the code. Feature requests are possible, but will probably only be realized after a quote and paid invoice. But this code is so Simple that I encourage everyone to make a special parser and share the code. So we all benefit!
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file ultrafastrss-0.1.21.tar.gz.
File metadata
- Download URL: ultrafastrss-0.1.21.tar.gz
- Upload date:
- Size: 54.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-httpx/0.28.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
90ea3d2a443939a328853cb4bd858e03d6f16155b7af8805a92ba7e625014ee0
|
|
| MD5 |
a3ff0e97d37e8b2af3e5151f62c3134e
|
|
| BLAKE2b-256 |
66229e837b3fdc85712d48fcd3a7f264a446135f6a7d4975081fac488602eadf
|
File details
Details for the file ultrafastrss-0.1.21-py3-none-any.whl.
File metadata
- Download URL: ultrafastrss-0.1.21-py3-none-any.whl
- Upload date:
- Size: 19.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-httpx/0.28.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
38cfc37a867497116ecdfbf285ec6d38426162d526d089dfec2cf174d76f3045
|
|
| MD5 |
6fa9405b0250d13107449291ca0ebae8
|
|
| BLAKE2b-256 |
c55ee6e15813eb1e4b311e995dc1c50e5c9f715b4100849924f6906124b89f3f
|