Piano API SDK
Project description
Piano API SDK
This is simple wrapper for Piano API.
Requirements
Python 3.7+
Examples
VX API
from pianosdk import Client, AccessTokenStorage
host = 'sandbox' # use 'production', 'sandbox' or custom endpoint here, like 'https://api-ap.piano.io'
client = Client(api_host=host, api_token='TOKEN', private_key='PRIVATE_KEY')
response = client.access_api.list('AID')
print(response)
response = client.publisher_term_api.list('AID')
print(response)
response = client.userref_create('UID', 'EMAIL')
print(f'User ref for [uid=UID, email=EMAIL]: {response}')
response = client.parse_webhook_data('WEBHOOK_DATA')
print(f'Webhook event: [{type(response)}] {response}')
token_storage = AccessTokenStorage(client.config)
response = token_storage.get_access_token('UNKNOWN_RID')
print(f'Access token for unknown rid: {response}')
token_storage.parse_access_tokens('TAC_VALUE')
# or use
token_storage.parse_access_tokens_from_cookies_string('ALL_COOKIES_STRING')
response = token_storage.get_access_token('RID')
print(f'Access token for known rid: {response}')
ID API
from pianosdk import Client
from pianosdk.id import PublisherLoginRequest
client = Client(environment='sandbox', api_token='TOKEN')
request = PublisherLoginRequest(aid='AID', email='test@example.com', password='1234')
response = client.publisher_identity_api.login(authorization=client.config.api_token, body=request)
print(response)
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
pianosdk-16.477.0.tar.gz
(105.4 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
pianosdk-16.477.0-py3-none-any.whl
(347.3 kB
view details)
File details
Details for the file pianosdk-16.477.0.tar.gz.
File metadata
- Download URL: pianosdk-16.477.0.tar.gz
- Upload date:
- Size: 105.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.9.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
be036e107fb83aea5499370de99854c1b94cfba2c9cb6750bdd08933061be318
|
|
| MD5 |
a953e6bcb4b527e78e4d37f6fe417b48
|
|
| BLAKE2b-256 |
78e07ff02d7b1ae7b1a522045136b474e1d249a7a2b4f1c7f63f10a58b718379
|
File details
Details for the file pianosdk-16.477.0-py3-none-any.whl.
File metadata
- Download URL: pianosdk-16.477.0-py3-none-any.whl
- Upload date:
- Size: 347.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.9.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bdba8b4b345f4194590bd20fb50f8867ad21320e8beb0483371ced18a785c47f
|
|
| MD5 |
32f2f67234e72d5802576d6177c112a8
|
|
| BLAKE2b-256 |
a52161e1fca30e9bf14def12cad8252931f836607a258643891a22093f85d271
|