我想在python程序中发送此命令。我怎样才能做到这一点?我不需要打印任何回复。
curl -k -X PUT 'http://10.210.12.158:10065/iot/put_bulb/true?id=4'
答案 0 :(得分:1)
使用os
:
from os import system
system("curl -k -X PUT 'http://10.210.12.158:10065/iot/put_bulb/true?id=4'")
使用subprocess
:
subprocess.Popen("curl -k -X PUT 'http://10.210.12.158:10065/iot/put_bulb/true?id=4'", shell=True)
答案 1 :(得分:1)