Skip to content

A python framework for access to Kintone's REST API, utilizing API keys.

License

Notifications You must be signed in to change notification settings

Through-the-Trees/KinPy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

KinPy

A python package for managing a kintone database using the kintone REST API.

Installation (TODO, For reference only)

pip install kinpy

Usage (TODO, For reference only)

Initialize Connection

>>> from kinpy import Kintone, KintoneAuth
...
>>> auth = KintoneAuth('your_domain', 'your_app_id', 'your_api_token')
>>> kintone = Kintone(auth)

Get Apps

>>> Kintone.apps
[App('appId'= '1', 'code'= 'app_code', 'name'= 'app_name', ...), ...]

Get Records

>>> app = kintone.apps['app_code']
>>> app.records
[Record('recordId'= '1', 'record'= {'field_code': {'value': 'value'}, ...}), ...]

License

GPLv3

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

About

A python framework for access to Kintone's REST API, utilizing API keys.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 3

  •  
  •  
  •  

Languages