Metadata-Version: 2.4
Name: parsing_tools
Version: 2.0.0
Summary: Python Parsing Tools
Project-URL: url, https://github.com/cnobile2012/parsing_tools
Project-URL: Repository, https://github.com/cnobile2012/parsing_tools
Author-email: "Carl J. Nobile" <carl.nobile@gmail.com>
Maintainer-email: "Carl J. Nobile" <carl.nobile@gmail.com>
License-Expression: MIT
License-File: LICENSE.txt
Keywords: mime,xml
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Python: >=3.8
Requires-Dist: defusedxml
Requires-Dist: six
Description-Content-Type: text/x-rst

*************
Parsing Tools
*************

.. image:: http://img.shields.io/pypi/v/parsing_tools.svg
    :target: https://pypi.python.org/pypi/parsing_tools
    :alt: PyPI Version

.. image:: https://img.shields.io/pypi/pyversions/parsing_tools.svg
    :target: https://pypi.python.org/pypi/parsing_tools
    :alt: PY Versions

.. image:: https://travis-ci.org/cnobile2012/parsing_tools.svg?branch=master
    :target: https://travis-ci.org/cnobile2012/parsing_tools
    :alt: Build Status

.. image:: http://img.shields.io/coveralls/cnobile2012/parsing_tools/master.svg?branch=master
    :target: https://coveralls.io/github/cnobile2012/parsing_tools?branch=master
    :alt: Test Coverage

.. image:: https://img.shields.io/pypi/dm/parsing_tools.svg
    :target: https://pypi.python.org/pypi/parsing_tools
    :alt: PyPI Downloads

The MIT License (MIT)

This repository contains multiple small projects each of which can be used
separately. There are, at this point, no dependencies between them.

This would be a great package to use when creating your own custom Django
REST Framework renderers and parsers based on custom MIME types.

Current Projects
================

mimeparser
----------

This tool would be used to parse HTTP headers to derive the 'best fit' mime
type. It handles suffix and quality parsing and can be used to find the best
match from an `Accept` header from a list of available mime types.

xml2dict
--------

This tool should be able to parse any XML document into Python objects. The
output will become very verbose since it will include all attributes,
elements and namespaces found in the XML document.
