Skip to content

Python client and scripts for talking to the KISI lock API

Notifications You must be signed in to change notification settings

jessejoe/kisi-python

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

kisi-python

Python client and scripts for talking to the KISI lock API

Based on Kisi's JS/Java examples:

https://github.com/kisi-inc/client-js

https://github.com/kisi-inc/client-java

NOTE: Location verification must be disabled for the user using the API.

kisi_unlock.py

kisi_unlock.py is a wrapper for KisiApi to have an all-in-one script to unlock a lock.

Example

$ ./kisi_unlock.py -e foo@bar.com -p PASSWORD -l 'My Door'
2015-10-29 08:19:06,396 root INFO Found lock: "My Door 2.0" (ID: 12345)
2015-10-29 08:19:06,396 root INFO Unlocking lock ID 12345
2015-10-29 08:19:07,163 root INFO {u'message': u'Unlocked!'}

If no password is provided, it will be prompted:

$ ./kisi_unlock.py -e foo@bar.com -l 'My Door'
Password:

api.py

api.py can be imported and used from outside scripts, for example:

In [1]: from api import KisiApi

In [2]: api = KisiApi('foo@bar.com', 'PASSWORD')

In  [3]: api.unlock('My Door')
Out [3]: {u'message': u'Unlocked!'}

The send_api() method can be used to send raw API calls to KISI:

In [4]: api.send_api('GET', 'keys')
Out[4]: <Response [200]>

In [5]: api.send_api('GET', 'keys').json()
Out[5]:
...omitted...

About

Python client and scripts for talking to the KISI lock API

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages