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.
Built Distribution
Close
Hashes for pyrec-0.2.1-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 684f57ff944d2657e228c13b5f8b2f4a633872ed31e4531b953d48eb5588f53d |
|
MD5 | 0996d12cfb4611aeba8480ebbe287452 |
|
BLAKE2-256 | 244b8b58b04e82fc97b4333083dcb97289d04a63fafd4d1236a06255b8792c99 |