Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/achillesrasquinha/truverifi
- Owner: achillesrasquinha
- License: mit
- Created: 2019-04-30T05:46:17.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-04-30T05:57:33.000Z (over 5 years ago)
- Last Synced: 2024-12-15T02:15:03.441Z (about 1 month ago)
- Topics: api, client, python, truverifi
- Language: Python
- Homepage:
- Size: 21.5 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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).
---