File: PKG-INFO

package info (click to toggle)
python-trie 0.2%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 128 kB
  • ctags: 133
  • sloc: python: 609; makefile: 78
file content (21 lines) | stat: -rw-r--r-- 971 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Metadata-Version: 1.1
Name: PyTrie
Version: 0.2
Summary: A pure Python implementation of the trie data structure.
Home-page: http://bitbucket.org/gsakkis/pytrie/
Author: George Sakkis
Author-email: george.sakkis@gmail.com
License: UNKNOWN
Description: A *trie* is an ordered tree data structure that is used to store a mapping
        where the keys are sequences, usually strings over an alphabet. In addition to
        implementing the mapping interface, tries allow finding the items for a given
        prefix, and vice versa, finding the items whose keys are prefixes of a given key.
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development :: Libraries :: Python Modules