Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gnarea/pyrecord
Pythonic Record Types.
https://github.com/gnarea/pyrecord
datatype python record struct
Last synced: 3 months ago
JSON representation
Pythonic Record Types.
- Host: GitHub
- URL: https://github.com/gnarea/pyrecord
- Owner: gnarea
- License: apache-2.0
- Created: 2013-04-01T16:48:48.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2017-02-25T12:49:51.000Z (almost 8 years ago)
- Last Synced: 2024-08-04T04:05:22.033Z (5 months ago)
- Topics: datatype, python, record, struct
- Language: Python
- Homepage: https://pythonhosted.org/pyrecord/
- Size: 93.8 KB
- Stars: 40
- Watchers: 2
- Forks: 2
- Open Issues: 6
-
Metadata Files:
- Readme: README.rst
- License: LICENSE.txt
- Support: docs/support.rst
Awesome Lists containing this project
- starred-awesome - pyrecord - Pythonic Record Types. (Python)
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