Metadata-Version: 2.4
Name: cosmic-python-sdk
Version: 0.1.1
Summary: Cosmic Gateway Python SDK
Home-page: https://github.com/cosmic-payment/cosmic-gateway
Author: Emmanuel Mnanka Samo
License: MIT
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: requests>=2.28

# Cosmic Python SDK

Minimal Python client for Cosmic Gateway API.

Install (PyPI):

    pip install cosmic-python-sdk

Quick example:

```py
from cosmic_sdk import CosmicGateway

client = CosmicGateway(api_key="sk_test_...")
resp = client.get('/health')
print(resp.status_code, resp.text)
```
