A minimal but opinionated dict/object combo (like Bunch).
Project description
ctx - A minimal but opinionated dict/object combo (like Bunch).
Requirements
The ctx module should work with all versions of Python.
Features
The ctx module provides the Ctx class which is a subclass of the python ‘dict’ object.
Ctx modifies ‘dict’ in the following ways:
1 The dictionary items can be read or set using attribute access notation.
‘ctx.a’ is identical to ‘ctx[“a”]’ and ‘ctx.a = 5’ is identical to ‘ctx[“a”] = 5’
2 The objects attributes can be read using item access notation.
‘ctx[“__doc__”]’ is identical to ‘ctx.__doc__’
3 The objects attributes can not be set under any circumstances.
4 The dictionary can not have a key with the same name as an objects attribute.
‘ctx.name’ and ‘ctx[“name”]’ are resolved using the following three steps.
if the object has an attribute ‘name’ then return the attribute.
b) if the dictionary has a key ‘name’ then return the value associated with the key.
raise LookupError.
‘ctx.name = 5’ and ‘ctx[“name”] = 5’
If name is an attribute of the class then raise AttributeError.
set the dictionary item as usual.
Installation
You can install this package using pip with the following command.
pip install ctx
Support
To report any bugs, or ask any question, please visit
https://github.com/figlief/ctx/issues.
Resources
Here is a list of useful links about this project.
Changelog on GitHub <https://github.com/figlief/ctx/blob/master/History.rst>
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
File details
Details for the file ctxpy-0.1.3.tar.gz
.
File metadata
- Download URL: ctxpy-0.1.3.tar.gz
- Upload date:
- Size: 3.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.0 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 848d72da7a4647effba4292ff76754280d704a594d3f5c58fb9c292d1377f50c |
|
MD5 | 97a2956446e79ccbaaeff4ba279f3fa8 |
|
BLAKE2b-256 | 093174891e138076b5116dd7a8ffb6dcfd721ed011048e827bd6540b306c026f |