Note
This repository has been migrated to git.gay. The Github version will no longer be maintained.
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)
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'}"
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
obj
must be strings, any other types will throw aTypeError
(ignored withignore_errors
) - Keys in
obj
cannot start with two underscores ("__"
) as those could be used to overwrite preexisting instance variables used for the class itself - If
recursive
is true, the values ofverbose_logs
andignore_errors
will 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(...)
- ReturnsTrue
if 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