Python SDK for Aplazame REST API
Project description
Aplazame Python Sdk
Aplazame, a consumer credit company, offers a payment system that can be used by online buyers to receive funding for their purchases.
Installation
To install aplazame-sdk, simply:
$ pip install aplazame-sdk
Usage
>>> import aplazame_sdk >>> client = aplazame_sdk.Client('token', sandbox=True, version='1', ctype='json') >>> r = client.orders(page=2) >>> r.json() { "cursor": { "after": 3, "before": 1 }, "paging": { "count": 314, "next": "https://api.aplazame.com/orders?page=3", "previous": "https://api.aplazame.com/orders?page=1" }, "results": [ ] } >>> r.status_code 200
Exceptions
>>> import aplazame_sdk >>> client = aplazame_sdk.Client('token') >>> try: ... r = client.get_order('buh') ... except aplazame_sdk.AplazameError as err: ... err.code 404
Http
GET /orders HTTP/1.1 Accept: application/vnd.aplazame.sandbox.v1+json Authorization: Bearer ->token<- Host: api.aplazame.com HTTP/1.1 200 OK Content-Type: application/vnd.aplazame.sandbox.v1+json
Documentation
Documentation is available at docs.aplazame.com.
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
aplazame-sdk-0.2.7.tar.gz
(9.2 kB
view hashes)