Metadata-Version: 2.1
Name: gspread_datarame
Version: 0.1.0
Summary: Simple data utilities for spreadsheet operations
Home-page: https://github.com/datatools/gspread_datarame
Author: Data Tools Dev
Author-email: Data Tools Dev <dev@datatools.example>
License: MIT
Project-URL: Homepage, https://github.com/datatools/gspread_datarame
Keywords: spreadsheet,data,utilities,helper
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries
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
Classifier: Programming Language :: Python :: 3.11
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE

# gspread_datarame

Simple data utilities for working with spreadsheet data.

## Installation

```bash
pip install gspread_datarame
```

## Usage

```python
import gspread_datarame

# Convert data to dictionary format
data = {"name": "John", "age": 30}
converted = gspread_datarame.to_dataframe(data)

# Convert back
original = gspread_datarame.from_dataframe(converted)

# Get version
print(gspread_datarame.get_version())
```

## Features

- Simple data conversion utilities
- Lightweight with no dependencies
- Easy to use API

## License

MIT License
