Allows you to use dot notation to index dicts, like how you can in javascript
Project description
DotIndex
Allows you to use dot notation to index dicts, like how you can in javascript
When printed, DotIndex objects are printed as a normal dict would be, however
the curly braces have a full stop before them, to signify that it is a
DotIndex object. (.{} would be an empty object)
Code Examples
Basic usage:
from DotIndex import DotIndex
x = {
"foo": "bar"
}
y = DotIndex(x)
print(y) # Expected output: ".{'foo': 'bar'}"
print(y.foo) # Expected output: "bar"
print(y["foo"]) # Expected output: "bar"
y["cat"] = "dog"
print(y.cat) # Expected output: "dog"
Adding together objects:
from DotIndex import DotIndex
x = DotIndex({
"foo": "bar"
})
y = DotIndex({
"cat": "dog"
})
# Adds all values in y to x
# Also works if you do `x = x + y`
x += y
print(x) # Expected output: ".{'cat': 'dog', 'foo': 'bar'}"
# Adding a DotIndex and a dict
z = x + {
"dicts": True
}
print(z) # Expected output: ".{'cat': 'dog', 'dicts': True, 'foo': 'bar'}"
# The second value overwrites any duplicate keys from the original object
z += {
"cat": "not dog"
}
print(z) # Expected output: ".{'cat': 'not dog', 'dicts': True, 'foo': 'bar'}"
Documentation
Creating the object
- Parameters
- obj (
dict[str, Any]) - the dict object that should be turned into a DotIndex object - recursive (
bool, default: True) - whether or not to DotIndex-ify any dicts inside the original object - verbose_logs (
bool, default: False) - whether or not to print out extra logs - ignore_errors (
bool, default: False) - whether or not to ignore non-critical errors
- obj (
- Other information:
- Keys in
objmust be strings, any other types will throw aTypeError(ignored withignore_errors) - Keys in
objcannot start with two underscores ("__") as those could be used to overwrite preexisting instance variables used for the class itself - If
recursiveis true, the values ofverbose_logsandignore_errorswill be passed through into any new DotIndex objects created
- Keys in
Converting types
iter(...)- Returns all keys in alphabetical orderstr(...)- Returns a string formatted like thestr(...)value of a dict object, with a full stop (".") at the start to show that it is a DotIndex type. Example:".{'foo': 'bar'}"repr(...)- Same asstr(...)int(...)- Returns the amount of keys in the objectfloat(...)- Same asint(...)except as a float typebool(...)- ReturnsTrueif there are any keys in the object, and if there aren't it returnsFalse
Comparisons
==- Checks if the two objects have all the values the same. Works with both DotIndex objects and dict objects!=- Opposite of==>,<,>=,<=- Compares the amount of keys in the object
Misc.
+- Takes the keys from the object on the right and adds them to the object on the left, overwriting any duplicateslen(...)- Returns the amount of keys in the object'val' in ...- Returns true if"val"is a key in the object
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file DotIndex-1.1.0.tar.gz.
File metadata
- Download URL: DotIndex-1.1.0.tar.gz
- Upload date:
- Size: 16.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f03fb651f13d116c68a63a0af341d9f5061cdc326e68fd83678470d4b0a2845c
|
|
| MD5 |
9ddf6a7c748fe4041ced0de3bbbffc80
|
|
| BLAKE2b-256 |
b1835b3d4e1a4b7f099c697d1d07cf8e51c16c31ea824fdc1e5e1012a569d7b8
|
File details
Details for the file DotIndex-1.1.0-py3-none-any.whl.
File metadata
- Download URL: DotIndex-1.1.0-py3-none-any.whl
- Upload date:
- Size: 16.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d5007c2621f57cbce2de8af325e9d0512d3a645f159f2eb53ed7e66a3a5ee99c
|
|
| MD5 |
a373a614d3f19813ec7966157450d2d4
|
|
| BLAKE2b-256 |
c0a56ea3676240e60c8fddd1143ac6cc3bd6bf6a08d483400931b8d3938454cc
|