gpt4 book ai didi

python - 如何在 Tweepy 中检查推文中的图像使用

转载 作者:太空宇宙 更新时间:2023-11-04 04:35:52 26 4
gpt4 key购买 nike

我编写了代码以从用户 [handles] 列表中提取推文。我正在将信息写入名为“结果”的 .txt 文件。

with open("results", "w") as fp:

for handle in handles:
print("Analyzing tweets from " + handle + "...")

user = api.get_user(id=handle)

fp.write("Handle: " + handle + "\n")
fp.write("Name: " + user.name + "\n")
fp.write("Description: " + str(user.description.encode(sys.stdout.encoding, errors='replace')) + "\n")
fp.write("Followers: " + str(user.followers_count) + "\n")
fp.write("Following: " + str(user.friends_count) + "\n")

tweet_counter = 0
prosocial_tweets_count = 0
regular_tweets_count = 0

all_tweets = []
social_tweets_len = []
regular_tweets_len = []
social_tweets_valence = []
regular_tweets_valence = []

regular_attachments = 0
social_attachments = 0

for tweet in tweepy.Cursor(api.user_timeline, id=user.id).items():
#control for timeline
dt = tweet.created_at
if dt > date_until:
continue
if dt < date_from:
break # XXX: I hope it's OK to break here
if include_retweets == "no" and tweet.text.startswith("RT"):
continue
if include_replies == "no" and tweet.in_reply_to_user_id:
continue
tweet_counter += 1

for word in vocabulary:
if word in tweet.text.lower():
#increase count of pro social tweets
prosocial_tweets_count += 1
#clean the tweet for valence analysis
clean = TextBlob(tweet.text.lower())
#calculate valence
valence = clean.sentiment.polarity
#append the valence to a list
social_tweets_valence.append(valence)
#append the length of the tweet to a list
social_tweets_len.append(len(tweet.text))

#check if there is an attachment
counting = tweet.text.lower()
counting_attachments = counting.count(" https://t.co/")
social_attachments = social_attachments + counting_attachments

#write date
fp.write(" * " + str(dt) + "\n")
#write the tweet
fp.write(" " + str(tweet.text.encode(sys.stdout.encoding, errors='replace')) + "\n")
#write the length of the tweet
fp.write(" Length of tweet " + str(len(tweet.text)) + "\n")
#write the valence of the tweet
fp.write(" Tweet valance " + str(valence) + "\n")
#write the retweets of the tweet
fp.write(" Retweets count: " + str(tweet.retweet_count) + "\n")
#write the likes of the tweet
fp.write(" Likes count: " + str(tweet.favorite_count) + "\n")
# Report each tweet only once whenever it contains more than one prosocial words
break

else:
#this code runs if the tweet is not prosocial
regular_tweets_count += 1
clean = TextBlob(tweet.text.lower())
valence = clean.sentiment.polarity

counting = tweet.text.lower()
counting_attachments = counting.count(" https://t.co/")
regular_attachments = regular_attachments + counting_attachments

regular_tweets_valence.append(valence)
regular_tweets_len.append(len(tweet.text))

attachments = regular_attachments + social_attachments

我想知道是否有人知道检查推文是否包含图像或视频的好方法。我还想创建一个每个用户平均使用图像和视频的列表。

最佳答案

如果你看This thread ,您会看到推文中的所有媒体实际上都存储在 tweet.entities['media'] 中。

因此,如果您想知道给定的推文(格式为 tweepy 使用的 tweepy.models.Status)是否包含图片,您可以试试这个:

try:
print(True in [medium['type'] == 'photo' for medium in tweet.entities['media']])
except:
print("No picture in this tweet")

希望对你有帮助。

关于python - 如何在 Tweepy 中检查推文中的图像使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51747812/

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