Metadata-Version: 2.1
Name: ace_tools_open
Version: 0.1.0
Summary: Open implementation of ace_tools referenced in GPT4o
Home-page: https://github.com/zinccat/ace_tools_open
Author: ZincCat
Author-email: ZincCat <zincchloride@outlook.com>
License: MIT
Project-URL: Homepage, https://github.com/zinccat/ace_tools_open
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pandas
Requires-Dist: itables
Requires-Dist: IPython
Provides-Extra: dev
Requires-Dist: pytest; extra == "dev"

# ace_tools_open
Open implementation of ace_tools referenced in GPT4o.

## Installation

```bash
pip install ace_tools_open
```

## Example
```python
import pandas as pd
import numpy as np

# Generate a random pandas dataframe
np.random.seed(0)
data = {
    'A': np.random.rand(10),
    'B': np.random.rand(10),
    'C': np.random.randint(1, 100, 10),
    'D': np.random.choice(['X', 'Y', 'Z'], 10)
}

df = pd.DataFrame(data)
import ace_tools_open as tools; tools.display_dataframe_to_user(name="Random DataFrame", dataframe=df)
```
