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.

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:
     a = permissive_dict({'A': 1, 'A B': 2, 'b': 3, 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.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.

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.0-py2.py3-none-any.whl (4.7 kB view details)

Uploaded Python 2Python 3

File details

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

File metadata

  • Download URL: permissive_dict-1.0.0-py2.py3-none-any.whl
  • Upload date:
  • Size: 4.7 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.0-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 489562aee0492606e39835307c12d1dd06b9e34d420e1c1253dbe3fb9add86fd
MD5 63fad82adcebdf77a83473d00df4a6f3
BLAKE2b-256 42eb6ed6894084d28efa46678f52dd549c068d8a7557ed9286c089d8f46f25b7

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