Skip to content

Latest commit

 

History

History
21 lines (16 loc) · 291 Bytes

README.md

File metadata and controls

21 lines (16 loc) · 291 Bytes

pokepay_partner_python_sdk

Usage

import pokepay
from pokepay.client import Client

c = Client('/path/to/config.ini')
req = pokepay.SendEcho('Hello, world!')
res = c.send(req)
res.body
res.status_code
res.elapsed

Run test

python3 -m unittest discover tests/