Я пытаюсь использовать Google Cloud NLP, он хорошо работает на Windows localhost, но когда я использую его в Beanstalk, скрипт зависает, когда достигает строки ниже, и мне приходится перезапускать сервер снова.
sentiment = client.analyze_sentiment(document=document).document_sentiment
вот все скрипты, которые я использую:
from google.cloud import language
from google.cloud.language import enums
from google.cloud.language import types
# Instantiates a client
client = language.LanguageServiceClient()
# The text to analyze
text = u'Hello, world!'
document = types.Document(
content=text,
type=enums.Document.Type.PLAIN_TEXT)
# Detects the sentiment of the text
sentiment = client.analyze_sentiment(document=document).document_sentiment
print('Text: {}'.format(text))
print('Sentiment: {}, {}'.format(sentiment.score, sentiment.magnitude))