Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/gnarea/pyrecord

Pythonic Record Types.
https://github.com/gnarea/pyrecord

datatype python record struct

Last synced: about 1 month ago
JSON representation

Pythonic Record Types.

Awesome Lists containing this project

README

        

=================================
PyRecord: Pythonic *Record* Types
=================================

A `record `_ (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 CPython v2.7, CPython v3.3+, PyPy
and PyPy v3, and can be thought of as an improved *namedtuple*.

The documentation is available at https://pythonhosted.org/pyrecord/

.. image:: https://img.shields.io/travis/gnarea/pyrecord.svg
:target: https://travis-ci.org/gnarea/pyrecord
:alt: Build Status

.. image:: https://img.shields.io/coveralls/gnarea/pyrecord/master.svg
:target: https://coveralls.io/r/gnarea/pyrecord?branch=master
:alt: Coverage Status