【发布时间】:2021-01-10 14:22:57
【问题描述】:
我用 tweepy 下载了 Twitter 数据,并将每条推文存储在 tweet_data 中。
tweet_data = []
for tweet_id in tweet_id_list:
try:
tweet_line = api.get_status(tweet_id,
trim_user = True,
include_my_retweet = False,
include_entities = False,
include_ext_alt_text = False,
tweet_mode = 'extended')
tweet_data.append(tweet_line)
except:
continue # if tweet_id not found in twitter, move on to next tweet_id
将 tweet_data 放入 'twitter_json.txt'。
with open('twitter_json.txt', 'w') as txt:
for data in tweet_data:
tweet = data._json
tweet = json.dumps(tweet)
try:
txt.write(tweet + '\n')
except Exception as e:
print(e)
这是文本文件中的部分数据。
{"created_at": "Tue Aug 01 16:23:56 +0000 2017", "id": sample_01, "id_str": sample_01, "full_text": "This is Phineas. He's a mystical boy. Only ever appears in the hole of a donut. 13/10 ", "truncated": false, "display_text_range": [0, 85], "extended_entities": {"media": [{"id": 892420639486877696, "id_str": "892420639486877696", "indices": [86, 109], "media_url": "some_url", "media_url_": "some_url", "url": some_url, "display_url": some_url, "expanded_url": some_url, "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 540, "h": 528, "resize": "fit"}, "small": {"w": 540, "h": 528, "resize": "fit"}, "large": {"w": 540, "h": 528, "resize": "fit"}}}]}, "source": "<a some_url", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 4196983835, "id_str": "4196983835"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 7427, "favorite_count": 35179, "favorited": false, "retweeted": false, "possibly_sensitive": false, "possibly_sensitive_appealable": false, "lang": "en"}
{"created_at": "Tue Aug 01 00:17:27 +0000 2017", "id": sample_02, "id_str": sample_02, "full_text": "This is Tilly. She's just checking pup on you. Hopes you're doing ok. If not, she's available for pats, snugs, boops, the whole bit. 13/10 some_url", "truncated": false, "display_text_range": [0, 138], "extended_entities": {"media": [{"id": 892177413194625024, "id_str": "892177413194625024", "indices": [139, 162], "media_url": "some_url", "media_url_": "some_url", "url": "some_url", "display_url": "some_url", "expanded_url": "some_url", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1055, "h": 1200, "resize": "fit"}, "small": {"w": 598, "h": 680, "resize": "fit"}, "large": {"w": 1407, "h": 1600, "resize": "fit"}}}]}, "source": "some_url", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 4196983835, "id_str": "4196983835"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 5524, "favorite_count": 30458, "favorited": false, "retweeted": false, "possibly_sensitive": false, "possibly_sensitive_appealable": false, "lang": "en"}
下一步...读取 'twitter_json.txt' 文件,我想用 pandas 创建一个 DataFrame。
with open('twitter_json.txt') as txt:
data = [line.strip() for line in txt]
这是创建的数据框的快照,结果似乎不太正确。
print(pd.DataFrame(data))
0
0 {"created_at": "Tue Aug 01 16:23:56 +0000 2017...
1 {"created_at": "Tue Aug 01 00:17:27 +0000 2017...
我希望数据框包含“created_at”、“id”、“id_str”等列。我该怎么做?
【问题讨论】:
标签: json python-3.x pandas tweepy