MongoDB
 sql >> Datenbank >  >> NoSQL >> MongoDB

Wie vergleiche ich Daten aus Twitter-Daten, die in MongoDB über PyMongo gespeichert sind?

Sie können Twitters „created_at“-Zeitstempel wie folgt in Python-Datetimes parsen:

import datetime, pymongo
created_at = 'Mon Jun 8 10:51:32 +0000 2009' # Get this string from the Twitter API
dt = datetime.strptime(created_at, '%a %b %d %H:%M:%S +0000 %Y')

und fügen Sie sie wie folgt in Ihre Mongo-Sammlung ein:

connection = pymongo.Connection('mymongohostname.com')
connection.my_database.my_collection.insert({
    'created_at': dt,
    # ... other info about the tweet ....
}, safe=True)

Und schließlich, um Tweets innerhalb der letzten drei Tage zu erhalten, die neuesten zuerst:

three_days_ago = datetime.datetime.utcnow() - datetime.timedelta(days=3)
tweets = list(connection.my_database.my_collection.find({
    'created_at': { '$gte': three_days_ago }
}).sort([('created_at', pymongo.DESCENDING)]))