dotwiz icon indicating copy to clipboard operation
dotwiz copied to clipboard

A blazing fast dict subclass that supports dot access notation.

Results 12 dotwiz issues
Sort by recently updated
recently updated
newest added

### Update [wheel](https://pypi.org/project/wheel) from **0.37.1** to **0.43.0**. *The bot wasn't able to find a changelog for this release. [Got an idea?](https://github.com/pyupio/changelogs/issues/new)* Links - PyPI: https://pypi.org/project/wheel ### Update [watchdog[watchmedo]](https://pypi.org/project/watchdog) from **2.1.9**...

update

fix https://github.com/rnag/dotwiz/issues/24 @rnag @orlof also relevant articles: https://stackoverflow.com/questions/51540806/how-to-auto-update-keys-from-a-class-inherited-from-dict/51541098#51541098 https://towardsdatascience.com/python-inheritance-should-you-inherit-from-dict-or-userdict-9b4450830cbb https://treyhunner.com/2019/04/why-you-shouldnt-inherit-from-list-and-dict-in-python/ http://www.kr41.net/2016/03-23-dont_inherit_python_builtin_dict_type.html https://stackoverflow.com/a/39375731/1426932 regarding inheriting from dict vs UserDict vs collections.abc.MutableMapping, which involves tradeoffs in performance vs complexity; in particular https://treyhunner.com/2019/04/why-you-shouldnt-inherit-from-list-and-dict-in-python/...

## Version 0.4.0 ## Python Python 3.9.16 ## Description I ran this code: ```python3 from dotwiz import DotWiz d = DotWiz() d.a = 1 del d.a print(d.a) ``` I expected...

bug

## Version 0.4.0 ## Platform Linux pop-os 5.15.11-76051511-generic #202112220937~1640185481~21.04~b3a2c21-Ubuntu SMP Mon Jan 3 16:5 x86_64 GNU/Linux ## Python Python 3.9.9 ## Description The `print_char` argument is not being picked up...

bug

#### Is your feature request related to a problem? Please describe. I usually have a json which I convert to a DotWiz class for the dot notation, but since its...

enhancement

#### Is your feature request related to a problem? Please describe. I want to update `benchmarks/` code to add a test benchmark file for `to_dict` -- and perhaps `to_json` if...

enhancement
help wanted

#### Is your feature request related to a problem? Please describe. I want to update `benchmarks/` code to add a test benchmark file for `copy` - i.e. synonymous to `dict.copy()`

enhancement
help wanted

#### Is your feature request related to a problem? Please describe. I want to update `benchmarks/` code to add a test benchmark file for `__delattr__` -- and perhaps `__delitem__` if...

enhancement
help wanted

#### Is your feature request related to a problem? Please describe. I want to update `benchmarks/` code to add a test benchmark file for `__getitem__`.

enhancement
help wanted