我是编程和云计算的新手。我正在尝试使用LED
和Ubidots
控制Raspberry Pi
。
我已在Ubidots
中创建了一个控制LED
值为0和1的网址。
我需要将此URL
(字符串)放入我的Python
代码中,即我需要检索子字符串。
我该怎么做?
答案 0 :(得分:2)
他们有tutorial for Raspberry Pi,非常简单明了。它使用他们的Python库进行了解释,因此您所询问的一切实际上都包含在其中。
这是您可以用于send a value using their Python library并从服务器打印响应的内容:
from ubidots import ApiClient
import math
import time
# Create an ApiClient object
api = ApiClient(token='XXXXXXXXXXXXXXXXXX')
# Get a Ubidots Variable
variable = api.get_variable('YOUR_VARIABLE_ID')
response = variable.save_value({"value": 1})
print response
或者,这是您可以用于get a value using their Python library并从服务器打印响应的内容:
from ubidots import ApiClient
import random
#Create an "API" object
api = ApiClient(token='XXXXXXXXXXXXXXXXXX')
#Create a "Variable" object
variable = api.get_variable("YOUR_VARIABLE_ID")
#Get the value from Ubidots
last_value = variable.get_values(1)
print last_value