addicted = addict ExtendeD
This library comes from ‘mewwts/addict‘ with some more features.
Dict
Same as Dict from ‘mewwts/addict‘ except that update() method accept list,tuple and kwargs like usual python dict. The use of ‘inspect‘ module has been removed for performance reason.
AddDict
Dict with these additional methods :
pprint() find(pattern,**kwargs) count_some_values(pattern,ignore_case=False) count_some_keys(pattern,ignore_case=False) count_some_items(filter) iter_some_items(pattern,ignore_case=False) iter_some_values(pattern,ignore_case=False) iter_some_keys(pattern,ignore_case=False) get_some_items(pattern,ignore_case=False) get_some_values(pattern,ignore_case=False) get_some_keys(pattern,ignore_case=False) mget(*key_list) extract(key_list) parse_booleans(key_list) parse_numbers(key_list) update_dict(*args, **kwargs)
NoAttrDict
Works like AddDict, except that it returns a ‘NoAttr‘ value when an attribute is missing. Please read noattr package notes for explaination about ‘NoAttr‘
from addicted import Dict,NoAttrDict d1 = AddDict() d2 = NoAttrDict() print type(d1.a.b.c.d) >>> <class 'addicted.AddDict'> print type(d2.a.b.c.d) >>> <class 'noattr.NoAttrType'>
News
0.0.9 (2017-05-01)
switch from pprint property to pprint() method, add pformat()
0.0.8 (2016-08-26)
add update_dict() for not recursive update()
0.0.6 (2015-08-06)
Flag to Beta.
0.0.4 (2015-08-06)
add __all__ list
0.0.3 (2015-08-04)
mewwts/addict source code has been included directly into elapouya/addicted to remove the use of ‘inspect’ module for performance reason the isgenerator() function has been coded another way. update() method has been changed to accept list,tuple and kwargs
0.0.2 (2015-07-31)
Add some methods
0.0.1 (2015-07-30)
First version
Release files for addicted 0.0.9
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| addicted-0.0.9.tar.gz | 6.0 kB | Details |
Release files / addicted-0.0.9.tar.gz
| Download URL | addicted-0.0.9.tar.gz |
|---|---|
| Size | 6.0 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
23d68a061eca37cf1889be61defb63002931add0e5ff38fc22560250161640de
|
|
BLAKE2b-256 checksum How to use checksums |
b66d1549ea836e70139753a4b7957ec96d47f8c64b8f6e783f9ad9ba2743310b
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |