Metadata-Version: 2.1
Name: PrettyDF
Version: 1.1
Summary: Pretty Print DataFrames
Author: DawnSaju
Author-email: dawnsajubusiness@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown

# PrettyDF Package

The PrettyDF package is a Python library crafted by DawnSaju, designed to enhance the visual representation of pandas DataFrames. It provides a set of tools to make your DataFrames more readable and visually appealing.

## Installation

You can install the PrettyDF package via pip:

```bash
pip install PrettyDF
```

## Usage

Import the required functions from the package in your Python script:

```python
from PrettyDF import table
```

You can then use the `hello` function to print a greeting to the current user:

```python
hello()
```

And the `table` function to display your DataFrame in a tabular format:

```python
import pandas as pd

data = pd.DataFrame({
    'Name': ['John', 'Anna', 'Peter'],
    'Age': [28, 24, 35],
    'City': ['New York', 'Paris', 'Berlin']
})

table(data)
```

## Functions

### `table(df)`

This function takes a pandas DataFrame as an argument, and returns the structured DataFrame in a tabular format.
```
