Metadata-Version: 2.1
Name: data-formatting-help
Version: 1.0.2
Summary: UNKNOWN
Home-page: UNKNOWN
License: UNKNOWN
Platform: UNKNOWN
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
Requires-Dist: bump2version
Requires-Dist: pytest

# data_formatting_help

`data_formatting_help` is a Python package that helps you with various data formatting tasks. It provides easy-to-use functions to manipulate and format data in different structures.

## Installation

You can install `data_formatting_help` via pip:

```bash
pip install data_formatting_help
```
## Usage

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

```python
from data_formatting_help import formatter

data = {"name": "John", "age": 30}
formatted_data = formatter.format_json(data)
print(formatted_data)
```

## Features

•   Format JSON data
•   Format CSV data
•   Convert dates and timestamps
•   Support for more formats in the future

## Development

To contribute to this project, clone the repository:

```bash
git clone https://github.com/pianoboy71/data_formatting_help.git
cd data_formatting_help
```

Install the dependencies:

```bash
pip install -r requirements.txt
```

Run tests:

```bash
pytest tests/
```

## License

This package has a MIT License, found in the [LICENSE](LICENSE) file.

