Metadata-Version: 2.4
Name: classyDict
Version: 0.1.1
Summary: A dictionary that supports dot notation access, including nested dicts.
Home-page: https://github.com/yourusername/classyDict
Author: Your Name
Author-email: your.email@example.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: requires-python
Dynamic: summary

# classyDict

`classyDict` is a Python package that provides a dictionary with dot notation access, including support for nested dictionaries.

## Features
- Access dictionary keys using dot notation.
- Supports nested dictionaries with dot notation.

## Installation

To install `classyDict`, you can use pip:

```bash
pip install classyDict
```

## Usage

Here's a simple example of how to use `classyDict`:

```python
from classyDict import ClassyDict

# Create a ClassyDict instance
my_dict = ClassyDict({'key1': 'value1', 'key2': {'nestedKey': 'nestedValue'}})

# Access values using dot notation
print(my_dict.key1)  # Output: value1
print(my_dict.key2.nestedKey)  # Output: nestedValue
```

## Contributing

Contributions are welcome! Please feel free to submit a Pull Request on GitHub.

## License

This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.

## Author

Your Name - [hassanrasool1057@gmail.com](mailto:hassanrasool1057@gmail.com)

## Acknowledgments

- Inspired by the need for a more intuitive way to access dictionary keys in Python. 
