An open API service indexing awesome lists of open source software.

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.

Awesome Lists containing this project

README

          

# Dynoptimdict
[![PyPI Latest Release](https://img.shields.io/pypi/v/dynoptimdict.svg)](https://pypi.org/project/dynoptimdict/)
[![Package Status](https://img.shields.io/pypi/status/dynoptimdict.svg)](https://pypi.org/project/dynoptimdict/)
[![License](https://img.shields.io/pypi/l/dynoptimdict.svg)](https://github.com/leoweyr/Python-Dynoptimdict/blob/main/LICENSE)
[![Downloads](https://static.pepy.tech/personalized-badge/dynoptimdict?period=total&units=international_system&left_color=grey&right_color=green&left_text=pypi%20downloads)](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