/rss-parser

typed python RSS parsing module built using BeautifulSoup and pydantic

Primary LanguagePythonGNU General Public License v3.0GPL-3.0

Rss parser

Downloads Downloads Downloads

PyPI version Python versions Wheel status License GitHub Pages

Pypi publish

About

rss-parser is typed python RSS parsing module built using BeautifulSoup and pydantic

Installation

pip install rss-parser

or

git clone https://github.com/dhvcc/rss-parser.git
cd rss-parser
pip install .

Usage

from rss_parser import Parser
from requests import get

rss_url = "https://feedforall.com/sample.xml"
xml = get(rss_url)

# Limit feed output to 5 items
# To disable limit simply do not provide the argument or use None
parser = Parser(xml=xml.content, limit=5)
feed = parser.parse()

# Print out feed meta data
print(feed.language)
print(feed.version)

# Iteratively print feed items
for item in feed.feed:
    print(item.title)
    print(item.description)

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Install dependencies with poetry install (pip install poetry)

pre-commit usage is highly recommended. To install hooks run

poetry run pre-commit install -t=pre-commit -t=pre-push

License

GPLv3