Python library for controlling GogoGate2 and iSmartGate devices
Installation
pip install gogogate2-api
Usage in Commands
$ gogogate2 --help Usage: gogogate2 [OPTIONS] COMMAND [ARGS]... Interact with the device API. Options: --host TEXT [required] --username TEXT [required] --password TEXT Omit for interactive prompt. Use '-' to read from stdin. --version Show the version and exit. --help Show this message and exit. Commands: close Close the door. info Get info from device. open Open the door. $ ismartgate --help Usage: ismartgate [OPTIONS] COMMAND [ARGS]... Interact with the device API. Options: --host TEXT [required] --username TEXT [required] --password TEXT Omit for interactive prompt. Use '-' to read from stdin. --version Show the version and exit. --help Show this message and exit. Commands: close Close the door. info Get info from device. open Open the door.
Usage in Code
from gogogate2_api import GogoGate2Api, ISmartGateApi # GogoGate2 API gogogate2_api = GogoGate2Api("10.10.0.23", "admin", "password") # Get info about device and all doors. await gogogate2_api.async_info() # Open/close door. await gogogate2_api.async_open_door(1) await gogogate2_api.async_close_door(1) # iSmartGate API ismartgate_api = ISmartGateApi("10.10.0.24", "admin", "password") # Get info about device and all doors. await ismartgate_api.async_info() # Open/close door. await ismartgate_api.async_open_door(1) await ismartgate_api.async_close_door(1)
Building
Building, testing and linting of the project is all done with one script. You only need a few dependencies.
Dependencies:
- python3 in your path.
- The python3
venvmodule.
The build script will setup the venv, dependencies, test and lint and bundle the project.