Skip to main content

Mutable records

Project description

mutablerecords.Record

This is similar to collections.namedtuple, except it supports optional attributes and mutability. A class definition is generated (with __slots__, __str__ and other niceties), and can be used to instantiate new records of that type. The record can also be subclassed to add new attributes or to add methods to that data.

Sometimes, a Record definition is used to replace a simple __init__ method that only takes N arguments and sets them as instance variables. These __init__ methods are tedious to write and, even if you do, you still have to write str, hash, eq functions, and set __slots__ to be fully correct, but who has the time for that? With records, you get all of that in a single declaration, which you can even inline as your base class.

# This acts like a mutable namedtuple, taking the same arguments.
Simple = mutablerecords.Record('Simple', ['foo'])

# Now let's use a default argument.
SecondRecord = mutablerecords.Record('SecondRecord', ['attr1', 'attr2'], {'attr3': 0})
foo = SecondRecord(1, 2, attr3=3)
# str(foo) --> 'SecondRecord(attr1=1, attr2=2, attr3=3)'
bar = SecondRecord(attr1=1, attr2=2, attr3=5)
# str(bar) --> 'SecondRecord(attr1=1, attr2=2, attr3=5)'

class Third(SecondRecord):
    required_attributes = ['third1']
    optional_attributes = {'third2': 5}

# Third requires attr1, attr2, and third1.
baz = Third(1, 2, 3, third2=4)
# Here, second1 is required, so it goes before attr3:
# str(baz) --> 'Third(attr1=1, attr2=2, third1=3, attr3=0, third2=5)'

class OptionalMaker(mutablerecords.Record('Required', ['required'])):
    required = None
    required_attributes = ['other']

opt = OptionalMaker(1)
# OptionalMaker has a class attribute that matches the name of a
#   required_attribute (required), so it becomes an optional_attribute with a
#   default equal to the attribute value (None). It also defines a new
#   required attribute 'other', which is set in opt as 1:
# str(opt) --> 'OptionalMaker(other=1, required=None)'
opt2 = OptionalMaker(2, required=3)
# This time, opt2 has required set, too, which is still an attribute.
# str(opt2) --> 'OptionalMaker(other=2, required=3)'

mutablerecords.HashableRecord

All this does is add a __hash__ implementation for when the record will be hashed, such as when a key in a dict or in a set.

mutablerecords.CopyRecord

This will copy a record and all of its fields. If a field is set to a Record instance, then it is also copied using CopyRecord. A future feature may also check for collections of Records, such as tuples or lists of instances, and recurse into those as well.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mutablerecords-0.4.1.tar.gz (5.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

mutablerecords-0.4.1-py2-none-any.whl (7.2 kB view details)

Uploaded Python 2

File details

Details for the file mutablerecords-0.4.1.tar.gz.

File metadata

File hashes

Hashes for mutablerecords-0.4.1.tar.gz
Algorithm Hash digest
SHA256 be54b2688c87126866fc52414bd1f10d6e2943f79bf92665fec95399252108b4
MD5 0b03f49a0d1e01572b9c1edf0d4cc581
BLAKE2b-256 db20905640389fa42372d6c5200a6bb7a919511ef4669fd50203e05e6805479e

See more details on using hashes here.

File details

Details for the file mutablerecords-0.4.1-py2-none-any.whl.

File metadata

File hashes

Hashes for mutablerecords-0.4.1-py2-none-any.whl
Algorithm Hash digest
SHA256 524ed0d33f369bce83265a7b0948405b0becc1f1bcf1c5c9d9195486cad4541b
MD5 88c1752635ab69f0c95dd72d556e9899
BLAKE2b-256 2243113bb709a13d8e304748be4bebfc755cdc37b4bf7793fae624d26935ad7e

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page