Are the dates stored in the 'created_at' fields marshaled to Python datetime objects via PyMongo, or do I have to manually replace the text strings with Python Date objects? i.e.
How do I convert a property in MongoDB from text to date type?
It seems highly unnatural that I would have to replace the date strings with Python date objects, which is why I'm asking the question.
I would like to write queries that display the tweets from the past three days. Please let me know if there is a slick way of doing this. Thanks!