Metadata-Version: 2.1
Name: simple-dotdict
Version: 0.0.1
Summary: 
Author: Jacob Valdez
Author-email: jacobfv123@gmail.com
Requires-Python: >=3.8,<4.0
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
Description-Content-Type: text/markdown

# Simple Dotdict

<!-- [![PyPI version](https://badge.fury.io/py/simple-dotdict.svg)](https://badge.fury.io/py/simple-dotdict)
[![Build Status](https://travis-ci.org/alexandrosstergiou/simple-dotdict.svg?branch=master)](https://travis-ci.org/alexandrosstergiou/simple-dotdict)
[![codecov](https://codecov.io/gh/alexandrosstergiou/simple-dotdict/branch/master/graph/badge.svg)](https://codecov.io/gh/alexandrosstergi) -->

The `dotdict` class is a dictionary that allows access to its elements using dot notation. It inherits from the built-in `dict` class in Python.

## Installation

To install `simple-dotdict`, you can use pip:

```bash
pip install simple-dotdict
```

## Usage

Here is an example of how to use the `dotdict` class:

```python
from simple_dotdict import dotdict

d = dotdict({'key': 'value'})
print(d.key)  # Outputs: value
```

You can also set and delete keys using dot notation:

```python
d.new_key = 'new_value'  # Sets a new key-value pair
print(d.new_key)  # Outputs: new_value
del d.new_key  # Deletes the key-value pair
```

## License

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

