.. automodule:: pygtrie
To install pygtrie, run:
pip install pygtrie
Or download the sources and save pygtrie.py
file with your
project.
The 1.0 release introduced backwards incompatibility in naming. The
module has been renamed from trie
to pygtrie
. Fortunately,
updating scripts using pygtrie should boil down to replacing:
from pytrie import trie
with:
import pygtrie as trie
.. autoclass:: pygtrie.Trie :members:
.. autoclass:: pygtrie.CharTrie :members:
.. autoclass:: pygtrie.StringTrie :members:
.. autoclass:: pygtrie.PrefixSet :members: