Metadata-Version: 2.1
Name: qb-sdk
Version: 0.0.2
Summary: qiibee loyalty blockchain brand SDK
Home-page: https://github.com/qiibee/qb-sdk-python
Author: qiibee
Author-email: tech@qiibee.com
License: UNKNOWN
Keywords: qiibee,api,sdk,blockchain,loyalty,QBX
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: requests (>=1.0.0)
Requires-Dist: web3 (>=5.0.0)
Requires-Dist: eth-utils (<2.0.0,>=1.6.0)
Requires-Dist: eth-keys (<0.3.0,>=0.2.1)
Requires-Dist: backoff (<2.0.0,>=1.9.0)

# 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:

```.python
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:

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

Reward a particular user:

```.python

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](https://github.com/qiibee/qb-sdk-python/tree/master/examples) directory for more comprehensive examples.



