Metadata-Version: 2.1
Name: pytreemap
Version: 0.2
Summary: High-performance Python Implementation of the Java TreeMap API
Home-page: https://github.com/GavinPHR/pytreemap
Author-email: gavinsweden@gmail.com
License: gpl-2.0
Keywords: python3,self-balancing,binary-search-tree,red-black-tree,java,treemap,treeset
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: License :: OSI Approved :: GNU General Public License v2 (GPLv2)
Requires-Python: >=3.5
Description-Content-Type: text/markdown

# pytreemap
A Python implementation of the Java TreeMap.

## Alpha release now available on PyPI

Install with pip:

```bash
pip3 install pytreemap
```

Documentation is work-in-progress.
You can use Java 7's doc as a reference for now.
All the method names are lower_case_separated_by_underscore instead of mixedCase, e.g.
`containsKey()` in Java is `contains_key()` in this package.

Testing is work-in-progress as well. Proceed with care.



