https://github.com/marselester/lenddo
Python API client for Lenddo.com
https://github.com/marselester/lenddo
Last synced: about 1 year ago
JSON representation
Python API client for Lenddo.com
- Host: GitHub
- URL: https://github.com/marselester/lenddo
- Owner: marselester
- License: mit
- Created: 2015-03-26T10:37:19.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2018-10-03T04:17:24.000Z (over 7 years ago)
- Last Synced: 2024-05-02T00:42:15.974Z (about 2 years ago)
- Language: Python
- Size: 8.79 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
README
======
Lenddo
======
Lenddo is a Python API client for Lenddo.com.
Usage example:
.. code-block:: python
import lenddo
lenddo.conf.api_key = 'YOUR-KEY'
lenddo.conf.api_secret = 'YOUR-SECRET'
try:
verif = lenddo.Verification.retrieve(client_id='0123456789abcdef01234567')
except lenddo.LenddoException as exc:
print(exc)
else:
print(verif.is_name_verified)
Tests
-----
.. code-block:: console
$ pip install -r requirements.txt
$ tox