■ Collection 클래스의 find_one 메소드를 사용해 특정 _id 값과 일치하는 1개 문서를 구하는 방법을 보여준다.
▶ 예제 코드 (PY)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
from pymongo import MongoClient from bson.objectid import ObjectId databaseURL = "mongodb://localhost:27017/" mongoClient = MongoClient(databaseURL) testDatabase = mongoClient["testdb"] userCollection = testDatabase["user"] user = userCollection.find_one({"_id": ObjectId("6655d73a919710ce0a3ce0b1")}) if user: print(user) |
▶ requirements.txt
1 2 3 4 |
dnspython==2.6.1 pymongo==4.7.2 |