Metadata-Version: 2.1
Name: hudutils
Version: 0.1
Summary: A utility library for flattening JSON data
Home-page: https://github.com/huddaannaa/hudutils
Author: Hud Daannaa
Author-email: hdaannaa@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Description-Content-Type: text/markdown
License-File: LICENSE

Yes, that code should be included in the `README.md` file under the usage section to demonstrate how to use the library. Here's the updated `README.md` content:

### `README.md`

```markdown
# HudUtils

A utility library for flattening JSON data.

## Installation

```bash
pip install hudutils
```

## Usage

```python
from hudutils import hudutils

json_data = {
    "a": 1,
    "b": {
        "c": 2,
        "d": {
            "e": 3
        }
    }
}

flattened = hudutils.flatten_json(json_data)
print(flattened)
```
```

This example shows users how to import and use the `flatten_json` function from your `hudutils` library. It provides a clear and practical example of how to use the library in their own projects.


