Metadata-Version: 2.3
Name: tableascii
Version: 0.1.2
Summary: A lightweight, simple Python library to create clean ASCII Table.
Author: Tariq Muhammed
Author-email: Tariq Muhammed <tariqmuhammmad02@gmail.com>
License: MIT
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Project-URL: Homepage, https://tari-dev.github.io/tableascii/
Project-URL: Documentation, https://tari-dev.github.io/tableascii/
Project-URL: Source, https://github.com/Tari-dev/tableascii
Project-URL: Bug Tracker, https://github.com/Tari-dev/tableascii/issues
Description-Content-Type: text/markdown

# Tableascii

A simple, lightweight, no-dependency Python library to create clean ASCII Table.

## Installation
Install from pypi
```bash
pip install tableascii
```
Or directly from Github
```bash
pip install git+https://github.com/Tari-dev/tableascii.git
```

## Usage Example
```python
from tableascii import Table

data = [
    ["Name", "Age"],
    ["Alice", 30],
    ["Bob", 25]
]

tb = Table(data)
print(tb.create())
```

```bash
+-------------+
| Name  | Age |
|-------------|
| Alice | 30  |
| Bob   | 25  |
+-------------+
```
## Features
- Pure ASCII output
- Simple and Lightweight
- No dependencies
- Automatically adjusts column width

## License
[MIT](https://github.com/Tari-dev/tableascii/blob/main/LICENSE)
