Data structure for complexe enumeration.
Project description
Data structure for storing complex enumeration
>>> class Color(Catalog): >>> _attrs = 'value', 'label', 'other' >>> red = 1, 'Red', 'stuff' >>> blue = 2, 'Blue', 'things'
Access values as Attributes
>>> Color.red.value 1 >>> Color.red.label 'Red'
Call to look up members by attribute value
>>> Color('Blue', 'label') Color.blue
Calling without attribute specified assumes first attribute defined in _attrs
>>> Color(1) Color.red
_attrs defaults to ['value'].
Member class can be replaced by extending CatalogMember and defining on Catalog with the _member_class attribute
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 Distribution
pycatalog-1.1.1.tar.gz
(3.3 kB
view details)
File details
Details for the file pycatalog-1.1.1.tar.gz
.
File metadata
- Download URL: pycatalog-1.1.1.tar.gz
- Upload date:
- Size: 3.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4c1d5ae0d72e7178afde2a5896a342f0ab9ab1247c9d7defa2d94d582b73699f |
|
MD5 | 3d67534bf659413aa98ef2978dcd8b2d |
|
BLAKE2b-256 | bdaea4d7245c2d140549726ab6cfb9296c2416f434346de510307ee2b026c931 |