Library for connecting to GogoGate2 and iSmartGate hubs
Project description
Python gogogate2-api
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.
gogogate2_api.info()
# Open/close door.
gogogate2_api.open_door(1)
gogogate2_api.close_door(1)
# iSmartGate API
ismartgate_api = ISmartGateApi("10.10.0.24", "admin", "password")
# Get info about device and all doors.
ismartgate_api.info()
# Open/close door.
ismartgate_api.open_door(1)
ismartgate_api.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
venv
module.
The build script will setup the venv, dependencies, test and lint and bundle the project.
./scripts/build.sh
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
gogogate2_api-2.0.2.tar.gz
(12.0 kB
view details)
Built Distribution
File details
Details for the file gogogate2_api-2.0.2.tar.gz
.
File metadata
- Download URL: gogogate2_api-2.0.2.tar.gz
- Upload date:
- Size: 12.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.0.10 CPython/3.8.5 Linux/5.4.0-1025-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 91e1747617c4a0b67f355969d2829f71bf8f4ba118f9fe43b94fa354471f16bd |
|
MD5 | 9819656b1e8f15f4b9e5b7aecde29c84 |
|
BLAKE2b-256 | fd765717ba3dd3a18abd7b1a838539c40d9cb6cfca7bf4b74b1355a34ec7d600 |
File details
Details for the file gogogate2_api-2.0.2-py3-none-any.whl
.
File metadata
- Download URL: gogogate2_api-2.0.2-py3-none-any.whl
- Upload date:
- Size: 11.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.0.10 CPython/3.8.5 Linux/5.4.0-1025-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d19917659c49da4c6eea7a993f2ce20600e158152c99ebd314fc439c7b9b508e |
|
MD5 | e7185e4dad1ece686c2d80cc52770587 |
|
BLAKE2b-256 | 9d2055ef55ca5b60199cfdc5144c0ec4f4c89478c04c29c2ad5bb9f19832244e |