Skip to content
This repository was archived by the owner on Apr 13, 2026. It is now read-only.

adamgilman/python-lockitron

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Example Usage

from lockitron import Lockitron
lock_controller = Lockitron(email="email@address.com", password="password")
lock_controller.locks
	#contains all the locks you control - [LockName]

#lock first door that you control
lock_controller.lock(lock_controller.locks[0])
#or
lock = lock_controller.locks[0]
lock.lock()

#unlock first door that you control
lock_controller.unlock(lock_controller.locks[0])
#or
lock = lock_controller.locks[0]
lock.unlock()

About

Python API to Lockitron Locks

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages