Skip to main content

Dictionary with loose rules for finding keys.

Project description

PermissiveDict

Dictionary class with loose rules for returning an attribute or a requested key value.

Note: may resort to iterating the dict values to find the matching requested key, so is potentially slow.

Key is first directly found using the exact key, and then loose rules are used.

Key Search Rules:

  1. Keys compared without regard to case.
  2. Spaces, underscores, full-stops and dashes are equivalent in a requested key.
  3. Requested key is converted to str and stripped for wild card searching.
  4. Items in the list can be retrieved by, get, attribute_access, call or array requested_key.
  5. First matching element is returned.
  6. Default of '' is used instead of dict standard None or raising KeyError
  7. Multiple keys can be supplied separated with , (comma)

Example:

    from permissive_dict import PermissiveDict

    a = PermissiveDict({'A B': 2, 4: 4})
    a.get('A_b') == a['a_b'] == a['A b'] == a['A_B'] == a['a-b '] == a['a.b '] == a.a_b == a.A_b == a('a-b')

    a.get('blue,4') == 4

    a.get('4') == a[4] == a(4) == a('4')

Items with multiple wildcard keys matching in the dictionary will return the first item found.

Keys can be accessed as attributes, array index, get() or by calling the instance variable.

Key and value can be set as an attribute.

Example:

a = PermissiveDict({'A B': 2, 4: 4})
a.hello = 4
a.hello == a['hello'] == a('hello') == a.get('HellO')

Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

permissive_dict-1.0.2-py2.py3-none-any.whl (4.9 kB view details)

Uploaded Python 2Python 3

File details

Details for the file permissive_dict-1.0.2-py2.py3-none-any.whl.

File metadata

  • Download URL: permissive_dict-1.0.2-py2.py3-none-any.whl
  • Upload date:
  • Size: 4.9 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/42.0.1 requests-toolbelt/0.9.1 tqdm/4.39.0 CPython/3.6.8

File hashes

Hashes for permissive_dict-1.0.2-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 fb971a358398b60ede05e8630e79186aec314f60c2ef8e7235dc91d1ecc7c5ff
MD5 13fc9b9beb013d46d427aa030a6689af
BLAKE2b-256 c18f232e076e4b0ad8f4cdb6e21afe187632a4168233ec9d791e63dc03ba05c5

See more details on using hashes here.

Supported by

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