No project description provided
Project description
stigg-api-client-v2 (BETA)
This library provides a Python wrapper to Stigg's GraphQL API based on the operations that are in use by the Stigg's Node.js SDK.
The ariadne-codegen code generator is used to generate a typesafe Python API client.
Documentation
TBD
Installation
pip install stigg-api-client-v2
Usage
Initialize the client:
import os
from stigg import Stigg
api_key = os.environ.get("STIGG_SERVER_API_KEY")
client = Stigg.create_async_client(api_key)
Provision a customer
import os
from stigg import Stigg
from stigg.generated import ProvisionCustomerInput
api_key = os.environ.get("STIGG_SERVER_API_KEY")
client = Stigg.create_async_client(api_key)
customer_input = ProvisionCustomerInput(
**{
"customer_id": "1661115567186116608", # mandatory, everything else is optional
"name": "Acme",
"email": "billing@acme.com",
"additional_meta_data": {"key": "value"},
"subscription_params": {"plan_id": "plan-acme-free"},
}
)
result = await client.provision_customer(customer_input)
print(result.provision_customer.customer)
Get a customer by ID
import os
from stigg import Stigg
from stigg.generated import GetCustomerByRefIdInput
api_key = os.environ.get("STIGG_SERVER_API_KEY")
client = Stigg.create_async_client(api_key)
result = await client.get_customer_by_id(GetCustomerByRefIdInput(**{"customer_id": "1661115567186116608"}))
print(result.get_customer_by_ref_id.name)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
stigg_api_client_v2-2.8.1.tar.gz
(427.9 kB
view hashes)
Built Distribution
Close
Hashes for stigg_api_client_v2-2.8.1.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 56bed3de3fbf253bb5245484f8afa83c4b4ad8ec17db922469b0adcd69213e4d |
|
MD5 | 4e1e2a38d5362f4f7ba97d243c1366e7 |
|
BLAKE2b-256 | 388e40bdab8da4f876a5af158b7d7834510ee70bc0eb9cad5c1fa14362591938 |
Close
Hashes for stigg_api_client_v2-2.8.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | ba0be87be5132187ec7d822fcd451207efcf9c9e2c028062fd813703e3ff4c44 |
|
MD5 | 9e9522eea1235a01cfa09b5b21aa502e |
|
BLAKE2b-256 | bf840c98d782059ac21a86ca95bcce3bb9cb2838594530afff1bafce3b3598a0 |