Metadata-Version: 2.4
Name: invoq
Version: 0.0.1
Summary: Pre-alpha Python SDK package for Invoq.
Author: Invoq
Keywords: invoq,stablecoin,payments,sdk
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Topic :: Office/Business :: Financial
Classifier: Typing :: Typed
Requires-Python: >=3.9
Description-Content-Type: text/markdown

# Invoq Python SDK

Pre-alpha Python SDK package for Invoq.

Invoq is a stablecoin acquiring product. This package currently provides only
the SDK foundation and client configuration primitives; payment APIs are not
implemented yet.

## Installation

```bash
python -m pip install invoq
```

## Usage

```python
from invoq import InvoqClient

client = InvoqClient(api_key="sk_test_...")

print(client.base_url)
print(client.is_configured)
```

You can also inspect package metadata:

```python
import invoq

print(invoq.__version__)
```

Do not build production integrations on this pre-alpha package yet.
