Fork me on GitHub

Source code for prefixtree

"""Trie based implemenation of dict and set.

Provides two collection classes:

* PrefixDict, a dictionary like object
* PrefixSet, a set like object

"""
from prefixtree.version import __version__
from prefixtree.collections import PrefixDict
from prefixtree.collections import PrefixSet

__all__ = ['PrefixDict', 'PrefixSet']