2 Star 13 Fork 4

Assassin/树莓派 YOLO 检测

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
test_request.py 609 Bytes
一键复制 编辑 原始数据 按行查看 历史
Assassin 提交于 2020-12-17 20:11 . add file
import requests
import pprint
import time
def get(url):
header = {'Content-Type':'application/json'}
response = requests.get(url,header)
return response.json()
res_json = get('http://192.168.137.136:5000/AlarmStatus')
AlarmStatus = res_json['AlarmStatus'] # bool
# print(type(res_json)) # dict
# print(res_json['AlarmStatus'])
while 1:
res_json = get('http://192.168.137.136:5000/AlarmStatus')
AlarmStatus = res_json['AlarmStatus'] # bool
if AlarmStatus:
print('AlarmStatus = True!')
time.sleep(2)
else:
print('AlarmStatus = False!')
time.sleep(2)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/hardychenlong/raspberry-pie4b-yolo-detection.git
git@gitee.com:hardychenlong/raspberry-pie4b-yolo-detection.git
hardychenlong
raspberry-pie4b-yolo-detection
树莓派 YOLO 检测
master

搜索帮助