Metadata-Version: 2.4
Name: paperclip-sdk
Version: 0.1.1
Summary: Public Python SDK for calling remote Leasekey functions.
Keywords: leasekey,sdk,rpc,paperclip
Requires-Python: >=3.10,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Requires-Dist: httpx (>=0.27,<1.0)
Project-URL: Homepage, https://leasekey.org
Description-Content-Type: text/markdown

# paperclip-sdk

Public Python SDK for calling Paperclip remote functions.

## Install

```bash
poetry add paperclip-sdk
```

or

```bash
pip install paperclip-sdk
```

## Configure authentication

```bash
export LEASEKEY_API_KEY="your-api-key"
```

## Usage

```python
from paperclip_sdk import PaperclipClient

with PaperclipClient(base_url="https://leasekey.org") as client:
    result = client.call("core.hello_world", name="Ada")
    print(result)
```

