Reputation: 1
Note : should not use mqtt connector.
Please guide me how to connect to thingsboard cloud by using python without mqtt connector? I've been doing R & D for 2 weeks but I didn't find any help over the internet.
Can someone write a custom connector to connect to the thingsboard ?
Upvotes: 0
Views: 265
Reputation: 356
Alternatively, you could use HTTP instead of MQTT to send your data via Python scripts. There are several modules like the requests or urllib3 available for that purpose.
Since you are using ThingsBoard Cloud there are two possible ways to send the data to ThingsBoard via HTTP:
Upvotes: 0