kashi03 / pyntone

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

pyntone


API client for Kintone REST API.

Installation

$ pip install pyntone

Example

Get Record

from pyntone import ApiTokenAuth, KintoneRestAPIClient

auth = ApiTokenAuth(api_token='[YOUR API TOKEN]')
client = KintoneRestAPIClient(
    base_url='https://[YOUR SUBDOMAIN].cybozu.com',
    auth=auth
)
res = client.record.get_record(1, 1)
print(res)

About

License:MIT License


Languages

Language:Python 100.0%