bạn có thể phân tích cú pháp các dấu thời gian create_at của Twitter thành lịch ngày của Python như sau:
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')
và chèn chúng vào bộ sưu tập Mongo của bạn như thế này:
connection = pymongo.Connection('mymongohostname.com')
connection.my_database.my_collection.insert({
'created_at': dt,
# ... other info about the tweet ....
}, safe=True)
Và cuối cùng, để nhận tweet trong vòng ba ngày qua, mới nhất trước tiên:
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)]))