{"library":"recordtype","title":"recordtype","description":"Provides a mutable alternative to namedtuple. Users define a class with fields and get a mutable, tuple-like object with named attributes. Last stable version is 1.4, released in 2012. No active development, but still usable. Use with caution in new projects.","language":"python","status":"maintenance","last_verified":"Fri May 01","install":{"commands":["pip install recordtype"],"cli":null},"imports":["from recordtype import recordtype"],"auth":{"required":false,"env_vars":[]},"quickstart":{"code":"from recordtype import recordtype\n\n# Define a record type\nPerson = recordtype('Person', 'name age email')\np = Person('Alice', 30, 'alice@example.com')\nprint(p.name)  # Alice\np.age = 31     # mutable\nprint(p.age)   # 31\n","lang":"python","description":"Creates a mutable record type with named fields.","tag":null,"tag_description":null,"last_tested":null,"results":[]},"compatibility":null}