Metadata-Version: 1.0
Name: data-structures
Version: 0.1.1
Summary: Python Data Structures - bags/multisets and setlists
Home-page: http://code.google.com/p/python-data-structures/
Author: Michael Lenzen
Author-email: m.lenzen@gmail.com
License: UNKNOWN
Download-URL: http://python-data-structures.googlecode.com/files/data-structures-0.1.1.tar.gz
Description: Python Data Structures
        ----------------------
        
        Project Homepage:
        http://code.google.com/p/python-data-structures/
        
        For now, this package includes one module - `collections_extended`.  This module
        extends the built-in collections module to include a `bag` class, AKA multiset, and
        a `setlist` class, which is a list of unique elements or an ordered set depending on
        how you look at it.  There are also frozen (hashable) varieties of each included.
        Finally, all collections are abstracted into one Collection abstract base class and
        a Collection factory is provided where you can create a Collection by specifying
        the properties unique, ordered and mutable.
        
        See http://code.google.com/p/python-data-structures/wiki/CollectionsExtendedProposal
        for more.
        
        
Keywords: collections,bag,multiset,setlist
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
