Metadata-Version: 1.1
Name: pyrecord
Version: 1.0rc1
Summary: Pythonic Record Types
Home-page: http://pythonhosted.org/pyrecord/
Author: Gustavo Narea
Author-email: me@gustavonarea.net
License: Apache License, Version 2.0
Description: =================================
        PyRecord: Pythonic *Record* Types
        =================================
        
        A `record <http://en.wikipedia.org/wiki/Record_(computer_science)>`_ (aka
        "struct" in C) is a pre-defined collection of values where each is accessed
        by a unique name. Depending on the nature of the data, records may be a
        superior alternative to dictionaries and instances of custom classes.
        
        **PyRecord** allows you to use records in Python v2.7 to v3.x and
        PyPy v2, and can be thought of as an improved *namedtuple*.
        
        The documentation is available at http://pythonhosted.org/pyrecord/
        
        .. image:: https://travis-ci.org/gnarea/pyrecord.png?branch=master
            :target: https://travis-ci.org/gnarea/pyrecord
            :alt: Build Status
        
        .. image:: https://coveralls.io/repos/gnarea/pyrecord/badge.png?branch=master
            :target: https://coveralls.io/r/gnarea/pyrecord?branch=master
            :alt: Coverage Status
        
        .. image:: https://pypip.in/d/pyrecord/badge.png
            :target: https://pypi.python.org/pypi/pyrecord/
            :alt: Downloads
Keywords: record type struct data structure
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Libraries
