1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
|
pygtrie
=======
.. automodule:: pygtrie
Installation
------------
To install pygtrie, run::
pip install pygtrie
Or download the sources and save ``pygtrie.py`` file with your
project.
Upgrading from 0.9.x
--------------------
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
Trie classes
------------
.. autoclass:: pygtrie.Trie
:members:
.. autoclass:: pygtrie.CharTrie
:members:
.. autoclass:: pygtrie.StringTrie
:members:
PrefixSet class
---------------
.. autoclass:: pygtrie.PrefixSet
:members:
.. include:: version-history.rst
|