Metadata-Version: 1.1
Name: recordclass
Version: 0.3
Summary: Mutable variant of collections.namedtuple that support assignments
Home-page: http://intellimath.bitbucket.org/recordclass
Author: Zaur Shibzukhov
Author-email: szport@gmail.com
License: MIT License
Download-URL: https://bitbucket.org/intellimath/recordclass
Description: ===========
        recordclass
        ===========
        
        **recordclass** is an `MIT Licensed <http://opensource.org/licenses/MIT>`_ python library.
        It implements the type ``mutabletuple`` factory function ``recordclass`` 
        in order to create record-like class. 
        
        * ``mutabletuple`` is specialization of the `tuple` type 
          (actually it's currently subclass of ``tuple``). 
          It's actually an *array of objects* with fixed size.
        * ``recordclass`` is a "mutable" variant of the ``collections.namedtuple``. 
          ``recordclass`` bases on the ``mutabletuple`` and has the same API as 
          ``collections.namedtuple``.
        
        This library actually is a "proof of concept" for the problem of "mutable" alternative
        of ``namedtuple``.
        
        Main repository for ``recordclass`` is on `bitbucket <https://bitbucket.org/intellimath/recordclass>`_.
        
        
        
Keywords: namedtuple,record,struct
Platform: Linux
Platform: Mac OS X
Platform: Windows
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Information Technology
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: Libraries :: Python Modules
