A python package for managing a kintone database using the kintone REST API.
pip install kinpy>>> from kinpy import Kintone, KintoneAuth
...
>>> auth = KintoneAuth('your_domain', 'your_app_id', 'your_api_token')
>>> kintone = Kintone(auth)>>> Kintone.apps
[App('appId'= '1', 'code'= 'app_code', 'name'= 'app_name', ...), ...]>>> app = kintone.apps['app_code']
>>> app.records
[Record('recordId'= '1', 'record'= {'field_code': {'value': 'value'}, ...}), ...]Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.