作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用 goole vision api,但我无法在不出现以下错误的情况下运行我的 python 脚本:
google.auth.exceptions.DefaultCredentialsError: ('File /root/GoogleCloudStaff/apikey.json is not a valid json file.', ValueError('Invalid control character at: line 5 column 37 (char 172)',))
我的 python 脚本:
import io
from google.cloud import vision
vision_client = vision.Client()
#file_name = "/var/www/FlaskApp/FlaskApp/static/"#'375px-Guido_van_Rossum_OSCON_2006_cropped.png'
file_name = '1200px-Guido_van_Rossum_OSCON_2006.jpg'
#file_name = "/var/www/FlaskApp/FlaskApp/static/cyou_pic_folders/cyou_folder_2017_11_16_10_26_18/pi_pic_lc_2017_11_16_10_26_1800049.png"
with io.open(file_name, 'rb') as image_file:
content = image_file.read()
image = vision_client.image(
content=content, )
labels = image.detect_labels()
for label in labels:
print(label.description)
非常感谢!
最佳答案
DefaultCredentialsError 表示您未能获取默认凭据。您是否以正确的方式完成了初始设置?看看vision
关于python - google.auth.exceptions.DefaultCredentialsError - 不是有效的 json 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47335217/
因此,我完全按照 Google Translate API 的文档执行相同的过程。 里面提供了下面的代码。 # Imports the Google Cloud client library from
我正在尝试对某些 bigquery 表执行 SQL 查询。尝试实例化 bigquery 客户端对象时,我不断收到 DefaultCredentialsError 。例如,通过这样做: from goo
我正在尝试使用 goole vision api,但我无法在不出现以下错误的情况下运行我的 python 脚本: google.auth.exceptions.DefaultCredentialsEr
我是一名优秀的程序员,十分优秀!