Skip to main content

dict replacement

Project description

Install

[sudo] pip install dict

Features

  • attribute-style access

  • None instead of KeyError

  • safe remove

  • jQuery like methods chaining

Usage

>>> from dict import dict

Example

>>> dict(k="v")["k"]
"v"

>>>  dict(k="v").k
"v"

>>> dict(k="v")["not_existing"]
None

>>> dict(k="v").not_existing
None

>>> dict(k="v").get("K",i=True) # case insensitive

Examples/

Feedback github_issues gitter github_follow

Download files

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

Source Distribution

dict-0.0.21.tar.gz (2.7 kB view hashes)

Uploaded Source

Supported by

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