Metadata-Version: 2.1
Name: dynoptimdict
Version: 1.0.0
Summary: 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.
Home-page: https://github.com/leoweyr/Python-Dynoptimdict
License: MIT
Author: leoweyr
Author-email: leoweyr@foxmail.com
Requires-Python: >=3.8,<4.0
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Project-URL: Repository, https://github.com/leoweyr/Python-Dynoptimdict
Description-Content-Type: text/markdown

# 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

