https://github.com/Danielhiversen/pySwitchbot
pre-commit-ci[bot] 1ebac33225 chore(pre-commit.ci): pre-commit autoupdate (#276) | преди 1 седмица | |
---|---|---|
.github | преди 4 седмици | |
scripts | преди 6 месеца | |
switchbot | преди 3 седмици | |
tests | преди 3 седмици | |
.gitignore | преди 3 години | |
.isort.cfg | преди 6 месеца | |
.pre-commit-config.yaml | преди 1 седмица | |
.travis.yml | преди 6 месеца | |
LICENSE | преди 6 години | |
MANIFEST.in | преди 3 години | |
README.md | преди 4 седмици | |
requirements.txt | преди 6 месеца | |
requirements_dev.txt | преди 6 месеца | |
setup.py | преди 3 седмици |
Library to control Switchbot IoT devices https://www.switch-bot.com/bot
Using the script scripts/get_encryption_key.py
you can manually obtain locks encryption key.
Usage:
$ python3 get_encryption_key.py MAC USERNAME
Key ID: xx
Encryption key: xxxxxxxxxxxxxxxx
Where MAC
is MAC address of the lock and USERNAME
is your SwitchBot account username, after that script will ask for your password.
If authentication succeeds then script should output your key id and encryption key.
Examples:
WoLock
import asyncio
from switchbot.discovery import GetSwitchbotDevices
from switchbot.devices import lock
async def main():
wolock = await GetSwitchbotDevices().get_locks()
await lock.SwitchbotLock(wolock['32C0F607-18B8-xxxx-xxxx-xxxxxxxxxx'].device, "key-id", "encryption-key").get_lock_status()
asyncio.run(main())