Metadata-Version: 2.1
Name: treehouse
Version: 0.1.0
Summary: High-performance tree traversal
Home-page: https://github.com/jaraco/treehouse
Author: Jason R. Coombs
Author-email: jaraco@jaraco.com
License: UNKNOWN
Description: .. image:: https://img.shields.io/pypi/v/treehouse.svg
           :target: https://pypi.org/project/treehouse
        
        .. image:: https://img.shields.io/pypi/pyversions/treehouse.svg
        
        .. image:: https://img.shields.io/travis/jaraco/treehouse/master.svg
           :target: https://travis-ci.org/jaraco/treehouse
        
        .. .. image:: https://img.shields.io/appveyor/ci/jaraco/treehouse/master.svg
        ..    :target: https://ci.appveyor.com/project/jaraco/treehouse/branch/master
        
        .. .. image:: https://readthedocs.org/projects/treehouse/badge/?version=latest
        ..    :target: https://treehouse.readthedocs.io/en/latest/?badge=latest
        
        
        Traverse Python object trees (dicts/lists) at C speed::
        
            >>> import treehouse
            >>> treehouse.map_values(int, {"a": "1", "b": {"c": "2"}})
            {"a": 1, "b": {"c": 2}}
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Requires-Python: >=2.7
Provides-Extra: docs
Provides-Extra: testing
