dict replacement
Project description
Installation
$ [sudo] pip install dict
Features
- attribute-style access
- None instead of KeyError
- safe remove
- jQuery like methods chaining
Examples
>>> from dict import dict
>>> 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
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
dict-2020.12.3.tar.gz
(1.7 kB
view details)
File details
Details for the file dict-2020.12.3.tar.gz
.
File metadata
- Download URL: dict-2020.12.3.tar.gz
- Upload date:
- Size: 1.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8a14ff62e2a9dff5ef751a2e5eee07715c79ddab6b9ca06c59e73622f80761b5 |
|
MD5 | fde93e24e71d6a17dfaafcd52ab4f3f7 |
|
BLAKE2b-256 | 320836006102b78ac2b54f2bba22221c88af4eac5103430950b22a5f92a3e5ec |