반응형
pymongo 드라이버를 사용하고 있습니다.
누군가 pymongo를보고 더 큰 일을하는 방법을 말해 줄 수 있습니까? 나는 모든 일에 익숙합니다.
해결 방법
>>> d = datetime.datetime(2009, 11, 12, 12)
>>> for post in posts.find({"date": {"$lt": d}}).sort("author"):
... post
...
{u'date': datetime.datetime(2009, 11, 10, 10, 45), u'text': u'and pretty easy too!', u'_id': ObjectId('...'), u'author': u'Eliot', u'title': u'MongoDB is fun'}
{u'date': datetime.datetime(2009, 11, 12, 11, 14), u'text': u'Another post!', u'_id': ObjectId('...'), u'author': u'Mike', u'tags': [u'bulk', u'insert']}
참조 페이지 https://stackoverflow.com/questions/4791555
반응형
'파이썬' 카테고리의 다른 글
파이썬 for 루프 감소 (0) | 2020.10.14 |
---|---|
파이썬 How to break a line of chained methods in Python? (0) | 2020.10.14 |
파이썬 FutureWarning : issubdtype의 두 번째 인수를`float`에서`np.floating`으로 변환하는 것은 더 이상 사용되지 않습니다. (0) | 2020.10.14 |
파이썬 Python 생성자 및 기본값 (0) | 2020.10.14 |
파이썬 Python: How to remove empty lists from a list? (0) | 2020.10.14 |
댓글