A record datatype for Python
Project description
Record is a datatype similar to the C struct: an ordered collection of data members with predefined names. It’s like the Python namedtuple but with mutable attributes and some extra conveniences.
>>> from pyrec import Record >>> Point = Record('Point', 'x y z') >>> p = Point(1, 2, 3) >>> p.z = 9 >>> p <Record object Point(x=1, y=2, z=9)>
For the full documentation, see https://github.com/bintoro/pyrec.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
File details
Details for the file pyrec-0.2.1-py2.py3-none-any.whl
.
File metadata
- Download URL: pyrec-0.2.1-py2.py3-none-any.whl
- Upload date:
- Size: 3.6 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 684f57ff944d2657e228c13b5f8b2f4a633872ed31e4531b953d48eb5588f53d |
|
MD5 | 0996d12cfb4611aeba8480ebbe287452 |
|
BLAKE2b-256 | 244b8b58b04e82fc97b4333083dcb97289d04a63fafd4d1236a06255b8792c99 |