feedparser: A Robust Python Library for Parsing Feeds
This repository profile is provided by osrepos.com, an open source repository discovery platform.

Summary
feedparser is a widely-used and reliable Python library designed for parsing Atom and RSS feeds. It simplifies the process of extracting data from various feed formats, making it an essential tool for developers working with syndicated content. With extensive testing and clear documentation, feedparser offers a straightforward solution for feed consumption in Python applications.
Repository Information
Topics
Click on any tag to explore related repositories
Use at your own risk
OSRepos shares public repositories for knowledge and discovery only. Any installation, execution, configuration, or use of code from these repositories is the user's own responsibility. Always review the repository, source code, dependencies, licenses, and security implications before running or installing anything. OSRepos is not responsible for issues, damages, or losses resulting from third-party repositories.
Introduction
feedparser is a robust and widely-used Python library specifically designed for parsing Atom and RSS feeds. Developed by Kurt McKee and originally by Mark Pilgrim, this project simplifies the complex task of extracting structured data from various syndicated content formats. It's a reliable choice for developers needing to integrate feed consumption into their Python applications, released under the BSD 2-clause license.
Installation
Getting started with feedparser is straightforward. You can install it using pip, the Python package installer:
$ pip install feedparser
Examples
Once installed, feedparser makes it easy to fetch and parse content from a feed URL. Here's a basic example demonstrating how to retrieve a feed and print its title and the titles and links of its entries:
import feedparser
# Parse a feed from a URL
feed = feedparser.parse('http://www.feedforall.com/sample.xml')
# Print feed title
print(f"Feed Title: {feed.feed.title}")
# Print entries
print("Entries:")
for entry in feed.entries:
print(f"- {entry.title}: {entry.link}")
This snippet quickly shows how to access the feed's metadata and iterate through its articles or items.
Why Use It
feedparser stands out as a premier choice for feed parsing in Python due to several key advantages:
- Comprehensive Format Support: It handles a wide array of feed formats, including Atom, RSS (all versions), RDF, and even JSON feeds, ensuring broad compatibility.
- Reliability and Maturity: As a long-standing project with an extensive test suite,
feedparseroffers stable and dependable performance for critical applications. - Ease of Use: Its intuitive API allows developers to quickly integrate feed parsing capabilities with minimal boilerplate code.
- Active Documentation: The project provides clear and comprehensive documentation, making it easy for new users to get started and for experienced users to find detailed information.
- Pythonic Design:
feedparseris designed with Python best practices in mind, making it feel natural to use within existing Python projects.
Links
- GitHub Repository: https://github.com/kurtmckee/feedparser
- Official Documentation: https://feedparser.readthedocs.io/en/latest/
Related repositories
Similar repositories that may be relevant next.
OpenMontage: The First Open-Source, Agentic Video Production System
June 29, 2026
OpenMontage is the world's first open-source, agentic video production system, designed to transform your AI coding assistant into a full video production studio. It features 12 pipelines, 52 tools, and over 500 agent skills, enabling end-to-end video creation from a simple prompt. This powerful tool handles research, scripting, asset generation, editing, and final composition, including the unique ability to produce real video from stock footage.

MarkLLM: An Open-Source Toolkit for LLM Watermarking
June 23, 2026
MarkLLM is an open-source toolkit designed to simplify the research and application of watermarking technologies for large language models (LLMs). It offers a unified framework for implementing various watermarking algorithms, alongside robust visualization and comprehensive evaluation tools. This toolkit helps researchers and the broader community understand and assess the authenticity and origin of machine-generated text.

Agent-Reach: Empower Your AI Agents with Internet Access, Zero API Fees
June 21, 2026
Agent-Reach is a powerful GitHub repository that equips AI agents with the ability to access and search the entire internet, including platforms like Twitter, Reddit, YouTube, and Bilibili. It provides a streamlined CLI experience, eliminating the need for complex API configurations and associated fees. This project ensures your AI agent can "see" and interact with web content effortlessly.
REAL Video Enhancer: AI-Powered Video Interpolation, Upscaling, and Denoising
June 19, 2026
REAL Video Enhancer is a powerful open-source application designed to enhance video quality across Linux, Windows, and macOS. It leverages AI models for advanced video processing tasks such as frame interpolation, upscaling, decompression, and denoising. This tool provides a modern alternative to older software, making high-quality video enhancement accessible to a wider audience.
Source repository
Open the original repository on GitHub.
6 counted GitHub visits