tuyawizard is a powerful and interactive CLI tool and Python library designed to help you discover and manage devices registered on the Tuya Cloud. It simplifies the authentication process using QR code login via the Smart Life or Tuya Smart app.
- Easy Authentication: Support for QR code login using the Smart Life or Tuya Smart mobile apps.
- Automatic Token Management: Automatically handles and refreshes cloud tokens.
- Device Discovery: Fetches a comprehensive list of all registered devices and their details.
- Flexible Usage: Use it as a standalone CLI tool or integrate it into your own Python projects.
- Refactored & Typed: Modern Python implementation with type hints and improved error handling.
Install the package via pip:
pip install tuyawizardTo enable the local network scan feature, install the optional dependency:
pip install rustuyaWhen tuyawizard was installed with pipx, inject it into the same venv instead:
pipx inject tuyawizard rustuyatuyawizard itself does not depend on cryptography, but the underlying tuya-device-sharing-sdk imports it without declaring it in its own requirements. If ModuleNotFoundError: No module named 'cryptography' appears at runtime, install it manually:
pip install cryptographyWhen tuyawizard was installed with pipx, inject it into the same venv instead:
pipx inject tuyawizard cryptography(The bundled Windows .exe already includes it, so this only affects pip/pipx-installed setups.)
A pre-built single-file tuyawizard.exe is available on the Releases page. Download tuyawizard-windows.zip, extract it, and run tuyawizard.exe. No Python install required; the scan feature is bundled.
The executable is not code-signed, so Windows SmartScreen or antivirus software may warn on first run. Click More info → Run anyway to proceed.
You can run the wizard directly from your terminal:
python -m tuyawizard| Option | Default | Description |
|---|---|---|
-device-file FILE |
tuyadevices.json |
Path to save the discovered devices list (JSON). |
-credentials-file FILE |
tuyacreds.json |
Path to load/save cloud authentication credentials (JSON). |
--postprocess |
false |
Run postprocess after fetching devices. |
--postprocess-only |
false |
Run postprocess only (skip wizard login/fetch). |
--postprocess-mode |
all |
Select postprocess mode: parent, scan, all. |
- parent: In the post‑process stage, the output JSON is adjusted so that each
subdeviceis properly linked to its parent device. - scan: The output JSON is enriched with
IPandversiondetails obtained through the realtime scanner (requiresrustuya).
Run wizard and then postprocess:
python -m tuyawizard --postprocessRun postprocess only:
python -m tuyawizard --postprocess-onlyRun parent-only postprocess:
python -m tuyawizard --postprocess-only --postprocess-mode parentRun scan-only postprocess:
python -m tuyawizard --postprocess-only --postprocess-mode scantuyawizard can also be imported and used as a module inside your own Python
project — fetch the device list from the Tuya cloud and, optionally, enrich
it with LAN scan data.
If rustuya is installed, just call postprocess_devices after fetching —
it runs the LAN scan and merges the results in one step:
from tuyawizard import TuyaWizard, postprocess_devices
tuya = TuyaWizard()
tuya.login_auto(user_code="YOUR_USER_CODE")
devices = tuya.fetch_devices()
postprocess_devices(devices, mode="scan") # scans via rustuya and mergesIf rustuya is not available but you already have id/ip(/version)
data collected from elsewhere (for example via rustuya-bridge), inject
those results directly. version is optional per item:
from tuyawizard import TuyaWizard, apply_scan_results
tuya = TuyaWizard()
tuya.login_auto(user_code="YOUR_USER_CODE")
devices = tuya.fetch_devices()
scan_results = [
{"id": "bf...01", "ip": "192.168.1.10"},
{"id": "bf...02", "ip": "192.168.1.11", "version": "3.4"},
]
apply_scan_results(devices, scan_results)- Open the Smart Life or Tuya Smart app.
- Go to Me (Profile) tab.
- Tap on the Settings icon in the top right corner.
- Go to Account and Security.
- You will find your User Code (or Account ID) there.
tuyacreds.json: Contains sensitive authentication tokens and endpoint information. Keep this file secure.tuyadevices.json: A structured JSON list of all your Tuya devices and their properties.
- Client Credentials: This tool currently uses temporary Home Assistant client credentials. These are intended to be replaced when official 3rd-party developer credentials become more widely available.
- Python Version: Requires Python 3.8 or higher.
This project is licensed under the MIT License.