该如何允许django从浏览器读取图像URL?
我正在学习制作django应用程序,以从蚱grass中的图像中获取主色,以便结果可以出现在犀牛中。需要从浏览器获取图像。在我的PC上下载的图像可以使用,但浏览器中的图像不起作用。然后我想知道是否有任何python库可以帮助解决这个问题?
jsob = {"clusters": 5,"path": 0}
if request.method == "POST":
try:
data = request.POST["data"]
print(data)
received = json.loads(str(data))
jsob.update(received)
path = jsob.get("path")
clusters = int(jsob.get("clusters"))
dc = DominantColors(path, clusters)
colors = dc.dominantColors().tolist()
print(colors)
print(type(colors))
results = {"colors":colors}
return JsonResponse(results)
except Exception as e:
PASS
答案 0 :(得分:0)
导入requests
而不是json,requests.get方法采用浏览器网址。
import requests
requests.get('your urls goes here!')