Metadata-Version: 2.4
Name: forkparser
Version: 2026.7.0
Summary: Parse Atom/RSS/JSON feeds in Python
License-Expression: BSD-2-Clause
License-File: LICENSE
Keywords: atom,feed,json,rdf,rss
Author: Kurt McKee
Author-email: contactme@kurtmckee.org
Requires-Python: >=3.10
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Topic :: Text Processing :: Markup
Requires-Dist: requests (>=2.20.0)
Requires-Dist: sgmllib3k (==1.0.0)
Project-URL: Changelog, https://feedparser.readthedocs.io/en/latest/changelog/
Project-URL: Documentation, https://feedparser.readthedocs.io/en/latest/
Project-URL: Source, https://github.com/kurtmckee/feedparser
Description-Content-Type: text/x-rst

..
    This file is part of feedparser.
    Copyright 2010-2025 Kurt McKee <contactme@kurtmckee.org>
    Copyright 2002-2008 Mark Pilgrim
    Released under the BSD 2-clause license.

feedparser
##########

Parse Atom and RSS feeds in Python.

----


Installation
============

feedparser can be installed by running pip:

..  code-block:: console

    $ pip install feedparser


Documentation
=============

The feedparser documentation is available on the web at:

    https://feedparser.readthedocs.io/en/latest/

It can also be built and browsed locally using `tox`_:

..  code-block:: console

    $ tox run -e docs

This will produce HTML documentation in the ``build/docs/`` directory.


Testing
=======

Feedparser has an extensive test suite, powered by `tox`_:

..  code-block:: console

    $ tox run-parallel


..  Links
..  =====
..
..  _tox: https://tox.wiki/

