Skip to content

Latest commit

 

History

History
17 lines (12 loc) · 275 Bytes

USAGE.md

File metadata and controls

17 lines (12 loc) · 275 Bytes
import keymateapi

s = keymateapi.Keymateapi(
    bearer_auth="<YOUR_BEARER_TOKEN_HERE>",
)


res = s.upsert(q='<value>')

if res.object is not None:
    # handle response
    pass