0

我正在使用 Python(3.6) 和 Django(2) 开发一个项目,在该项目中我需要使用 Google 云自然语言处理 API 处理目录中的太多文件,但是在处理 ~100 个文件后,它返回错误:

ssl.SSLEOFError: EOF 发生违反协议 (_ssl.c:852) [29/Dec/2018 13:27:33] "POST / HTTP/1.1" 500 17751

这里来自views.py

def nlp_text_manager(text_path, name):
    text = text_path
    # encoding = predict_encoding(text_path)
    # print('encoding is: {}'.format(encoding))
    txt = Path(text_path).read_text(encoding='utf8')
    service = discovery.build('language', 'v1beta2', credentials=credentials)
    service_request = service.documents().analyzeSentiment(
        body={
            'document': {
                'type': 'PLAIN_TEXT',
                'content': txt
            }
        }
    )
    response = service_request.execute()
    return response
4

0 回答 0