https://github.com/leoweyr/python-dynoptimdict
A dynamic data dict class that inherits and overrides the built-in dict class for special purposes. That provides real-time access to dynamic data, while still allowing the option to get only the specified data without calculating all. It adheres to the concept of program optimization which avoids loading if not used, saving both memory and time.
https://github.com/leoweyr/python-dynoptimdict
dynamic-data dynamic-optimization pypi-package python-dict python-module python-oop python-package
Last synced: 4 months ago
JSON representation
A dynamic data dict class that inherits and overrides the built-in dict class for special purposes. That provides real-time access to dynamic data, while still allowing the option to get only the specified data without calculating all. It adheres to the concept of program optimization which avoids loading if not used, saving both memory and time.
- Host: GitHub
- URL: https://github.com/leoweyr/python-dynoptimdict
- Owner: leoweyr
- License: mit
- Created: 2023-05-01T10:08:29.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-05-06T06:58:00.000Z (over 2 years ago)
- Last Synced: 2025-08-31T15:09:40.685Z (4 months ago)
- Topics: dynamic-data, dynamic-optimization, pypi-package, python-dict, python-module, python-oop, python-package
- Language: Python
- Homepage: https://pypi.org/project/dynoptimdict/
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Dynoptimdict
[](https://pypi.org/project/dynoptimdict/)
[](https://pypi.org/project/dynoptimdict/)
[](https://github.com/leoweyr/Python-Dynoptimdict/blob/main/LICENSE)
[](https://pepy.tech/project/dynoptimdict)
A dynamic data dict class that inherits and overrides the built-in dict class for special purposes. That provides real-time access to dynamic data, while still allowing the option to get only the specified data without calculating all. It adheres to the concept of program optimization which avoids loading if not used, saving both memory and time.
## ⚖️License
[MIT](https://github.com/leoweyr/Python-Dynoptimdict/blob/main/LICENSE)
## 📗Documentation
The basic usage is similar to that of Python built-in `dict`, please refer to the code example for specific differences: https://github.com/leoweyr/Python-Dynoptimdict/tree/main/examples