Metadata-Version: 2.1
Name: promptground
Version: 0.2.0
Summary: A Python SDK for interacting with PromptGround API.
Home-page: https://promptground.io
Author: NoCode, Inc.
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
License-File: LICENSE

# PromptGround SDK

A simple Python SDK for interacting with the PromptGround API.

## Installation

Install the SDK using pip:

```bash
pip install promptground
```

## Usage

```python
from promptground import PromptGround

pg = PromptGround(api_key="your_api_key_id", api_secret="your_api_secret")
prompt = pg.prompt(alias='welcome-user', data={'name': 'PromptGround'})
print(prompt) # Outputs "Welcome to PromptGround"
