The `tuya-connector-python` SDK is desinged to support open APIs and Pulsar Messages provided by Tuya.
Project description
tuya-connector-python
The tuya-connector-python
SDK is designed to support openAPIs and Pulsar messages provided by Tuya. Before using this SDK, you can see Quick Start on the Tuya Developer website to learn more about Cloud Development Platform.
Install
pip3 install tuya-connector-python
Get started
-
Sign up for Tuya developer account.
-
Create a cloud project. See the tutorial for how to get the authorization key and other necessary parameters.
-
A quick example is as follows:
from tuya_connector import ( TuyaOpenAPI, TuyaOpenPulsar, TuyaCloudPulsarTopic, ) ACCESS_ID = "your-access-id" ACCESS_KEY = "your-access-key" API_ENDPOINT = "https://openapi.tuyacn.com" MQ_ENDPOINT = "wss://mqe.tuyacn.com:8285/" # Init OpenAPI and connect openapi = TuyaOpenAPI(API_ENDPOINT, ACCESS_ID, ACCESS_KEY) openapi.connect() # Call any API from Tuya response = openapi.get("/v1.0/statistics-datas-survey", dict()) # Init Message Queue open_pulsar = TuyaOpenPulsar( ACCESS_ID, ACCESS_KEY, MQ_ENDPOINT, TuyaCloudPulsarTopic.PROD ) # Add Message Queue listener open_pulsar.add_message_listener(lambda msg: print(f"---\nexample receive: {msg}")) # Start Message Queue open_pulsar.start() input() # Stop Message Queue open_pulsar.stop()
OpenAPI reference
Tuya opens up a variety of APIs covering scenarios such as device pairing, asset management, and device control. You can call APIs according to API reference to create IoT applications.
Feedback
If you have any questions, please provide feedback via Github Issue or Technical Ticket.
License
The tuya-connector-python
SDK is available under the MIT license. For more information, see the LICENSE file.
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
Built Distribution
File details
Details for the file tuya-connector-python-0.1.2.tar.gz
.
File metadata
- Download URL: tuya-connector-python-0.1.2.tar.gz
- Upload date:
- Size: 9.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.8.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 84a8fa9b22d839e8ff0c3a45b36df6194b3dfb1b2dd31b9203eb7f94e3303d7e |
|
MD5 | 1cbdbd5ef504e1f804db954fe7e3384b |
|
BLAKE2b-256 | 3e3cd3d750fc81a87aaec9082b13fe270e5e6ff9b3432791989042d46b251447 |
File details
Details for the file tuya_connector_python-0.1.2-py3-none-any.whl
.
File metadata
- Download URL: tuya_connector_python-0.1.2-py3-none-any.whl
- Upload date:
- Size: 9.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.8.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 42cde44cf9af86d187f89b2f0c121a1104a0c7b7ca16bc46bbc6b470d299afdf |
|
MD5 | c69450b29e33a6489e97e0c5cb6a0739 |
|
BLAKE2b-256 | 6bf927a340f4472f6ada8da4ef30178cd32a55775ce6ada55ca4aa901652477d |