Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/achillesrasquinha/truverifi

Python client library for truverifi
https://github.com/achillesrasquinha/truverifi

api client python truverifi

Last synced: 5 days ago
JSON representation

Python client library for truverifi

Awesome Lists containing this project

README

        



Python client library for truverifi





















### Table of Contents
* [Installation](#installation)
* [Usage](#usage)
* [License](#license)

#### Installation

```shell
$ pip install truverifi
```

#### Usage

##### Application Interface

```python
>>> import truverifi
>>> client = truverifi.API("")
>>> client.account()
{
"balance": 2,
"username": "[email protected]",
"transactions": [
{
"id": 69,
"amount": -1,
"timestamp": "2018-07-07T19:30:00Z",
"description": "Number change to: 111-222-3333"
}
]
}

>>> client.line()

>>> zip, services = 12345, ["FACEBOOK", "TWITTER"]
>>> client.checkService(services, zip)
>>> client.lineChangeService(services, zip)

>>> client.lineExtend()
```

#### License

This repository has been released under the [MIT License](LICENSE).

---


Made with ❤️ using boilpy.