Skip to main content

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
  • Other information:
    • Keys in obj must be strings, any other types will throw a TypeError (ignored with ignore_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 of verbose_logs and ignore_errors will be passed through into any new DotIndex objects created

Converting types

  • iter(...) - Returns all keys in alphabetical order
  • str(...) - Returns a string formatted like the str(...) 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 as str(...)
  • int(...) - Returns the amount of keys in the object
  • float(...) - Same as int(...) except as a float type
  • bool(...) - Returns True if there are any keys in the object, and if there aren't it returns False

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 duplicates
  • len(...) - Returns the amount of keys in the object
  • 'val' in ... - Returns true if "val" is a key in the object

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

DotIndex-1.1.0.tar.gz (16.1 kB view details)

Uploaded Source

Built Distribution

DotIndex-1.1.0-py3-none-any.whl (16.3 kB view details)

Uploaded Python 3

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

Hashes for DotIndex-1.1.0.tar.gz
Algorithm Hash digest
SHA256 f03fb651f13d116c68a63a0af341d9f5061cdc326e68fd83678470d4b0a2845c
MD5 9ddf6a7c748fe4041ced0de3bbbffc80
BLAKE2b-256 b1835b3d4e1a4b7f099c697d1d07cf8e51c16c31ea824fdc1e5e1012a569d7b8

See more details on using hashes here.

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

Hashes for DotIndex-1.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 d5007c2621f57cbce2de8af325e9d0512d3a645f159f2eb53ed7e66a3a5ee99c
MD5 a373a614d3f19813ec7966157450d2d4
BLAKE2b-256 c0a56ea3676240e60c8fddd1143ac6cc3bd6bf6a08d483400931b8d3938454cc

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page