Metadata-Version: 2.1
Name: signway-sdk
Version: 0.1.1
Summary: Create signed URLs for Signway
Author: gabotechs
Author-email: gb.mt.me@gmail.com
Requires-Python: >=3.9,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Description-Content-Type: text/markdown

# Signway Python SDK

Generate signed urls for [Signway](https://github.com/gabotechs/signway), so that they can be
used in client-side code.

# Install

```shell
pip install signway-sdk
```

# Usage

```shell
from signway_sdk import sign_url

sign_url(
    id="my-id",
    secret="my-secret",
    host="https://api.signway.io",
    proxy_url="https://api.openai.com/v1/chat/completions",
    expiry=10,
    method="POST"
)
```

