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())