Skip to content

Latest commit

 

History

History
56 lines (29 loc) · 1.01 KB

File metadata and controls

56 lines (29 loc) · 1.01 KB

Latest Stable Version

Trolley Python SDK

A native Python SDK for the Trolley API

Installation

Use pip to install the latest version of the package

$ pip install trolleyhq

Dependencies

Getting Started

from trolley.configuration import Configuration

client = Configuration.gateway("ACCESS_KEY","SECRET_KEY")
response = client.recipient.find("R-WJniNq7PUAJetimmJ4")

print(response.id)

Running Tests

// unit tests
$ python -m unittest test/unit/testBalances.py

//integration tests
$ python test/integration/RecipientTest.py

Documentation

Documentation about how to use our Python SDK is available at https://docs.trolley.com/

Besides that, methods should all have Python Doc comments to help you understand their usage.