Skip to content

Latest commit

 

History

History
16 lines (12 loc) · 297 Bytes

USAGE.md

File metadata and controls

16 lines (12 loc) · 297 Bytes
import keymateapi

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

res = s.upsert(q='I prefer Costa over Starbucks.')

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