Metadata-Version: 1.0
Name: justindex
Version: 0.0.1
Summary: nltk.util.Index in a standalone package.
Home-page: UNKNOWN
Author: Kirill Bulygin
Author-email: kirill.bulygin@gmail.com
License: UNKNOWN
Description: .. This file is generated. DO NOT EDIT it.
        .. code-block:: python
        
            >>> index((len(s), s) for s in 'a b'.split())
            defaultdict(<class 'list'>, {1: ['a', 'b']})
            >>> index((len(s), s) for s in ''.split())
            defaultdict(<class 'list'>, {})
            >>> sorted(index((len(s), s) for s in 'a b cc'.split()).items())
            [(1, ['a', 'b']), (2, ['cc'])]
            
        
Platform: UNKNOWN
