Skip to main content

qiibee loyalty blockchain brand SDK

Project description

qb-sdk-python

Brand SDK for the Qiibee blockchain.

Requirements

To use this library, use the Qiibee dashboard account to retrieve the API key present at https://dashboard.qiibee.com/developers

Installation

pip install qb-sdk

Example usage

Import the SDK library:

import qbsdk

Initialize the API object:

api_key = os.environ['QB_API_KEY']
brand_address_private_key = os.environ['BRAND_ADDRESS_PRIVATE_KEY']
token_symbol = os.environ['BRAND_TOKEN_SYMBOL']
api = qbsdk.Api(api_key)

Fetch existing tokens:

tokens = api.get_tokens()
for token in tokens.private:
    print(vars(token))

Reward a particular user:

wallet = qbsdk.Wallet(brand_address_private_key, token_symbol, api, transfer_strategy=qbsdk.TransferStrategy.brand)

wallet.setup()

transfer_receiver = '0x87265a62c60247f862b9149423061b36b460f4bb'
tx = wallet.send_transaction(transfer_receiver, 10)

Check out the examples directory for more comprehensive examples.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

qb-sdk-0.0.2.tar.gz (6.9 kB view hashes)

Uploaded Source

Built Distribution

qb_sdk-0.0.2-py3-none-any.whl (8.9 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page