gpt4 book ai didi

python - 如何使用 Google Cloud NL api 进行情绪分析?

转载 作者:太空宇宙 更新时间:2023-11-03 15:47:24 25 4
gpt4 key购买 nike

如何使用 Google Cloud NL API 对来自 Twitter 且具有我选择的主题(关键字)的推文进行情绪分析?

我可以编写使用 Twitter(Twitter api)的 python 脚本来了解人们对我使用 python 的 NL 库“TextBlob”选择的主题的感受

 import tweepy from textblob import TextBlob

# Step 1 - Authenticate
consumer_key= 'CONSUMER_KEY_HERE'
consumer_secret= 'CONSUMER_SECRET_HERE'

access_token='ACCESS_TOKEN_HERE'
access_token_secret='ACCESS_TOKEN_SECRET_HERE'

auth = tweepy.OAuthHandler(consumer_key, consumer_secret)
auth.set_access_token(access_token, access_token_secret)

api = tweepy.API(auth)

#Step 3 - Retrieve Tweets
public_tweets = api.search('Trump')



#CHALLENGE - Instead of printing out each tweet, save each Tweet to a CSV file
#and label each one as either 'positive' or 'negative', depending on the sentiment
#You can decide the sentiment polarity threshold yourself


for tweet in public_tweets:
print(tweet.text)

#Step 4 Perform Sentiment Analysis on Tweets
analysis = TextBlob(tweet.text)
print(analysis.sentiment)
print("")

最佳答案

您可以使用 google-cloud python module :

# Import the module and create a language client
from google.cloud import language
language_client = language.Client()

# Analyze the sentiment
document = language_client.document_from_html(tweet.text)
annotations = document.analyze_sentiment()
print(annotations.score, annotations.magnitude)

此外,您还可以使用 tweepy Streaming API 中的 track 参数。实时过滤特定主题的推文。

关于python - 如何使用 Google Cloud NL api 进行情绪分析?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41630689/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com