使用tweepy将twitter粉丝保存到MongoDb中

时间:2015-08-03 10:56:35

标签: python mongodb twitter tweepy

我想使用tweepy将Twitter数据存储在MongoDb中。我想以下面的格式存储它:

{
    "followee": 12345,
    "follower": 54321,
    "follower_Name": abcd
}

怎么做?

1 个答案:

答案 0 :(得分:0)

由于您使用的是Python,我建议: http://api.mongodb.org/python/current/tutorial.html

// Mongo shell
db.createCollection("tweeps")
db.tweeps.insert([{
    "followee": 12345,
    "follower": 54321,
    "follower_Name": abcd
}])

// Python
tweeps = db.tweeps
tweeps.insert_many([{
    "followed": 12345,
    "follower": 54321,
    "follower_Name": abcd
}])