파이썬 몽고db
-
[Python] Monodb Connection Using pymongo. (파이썬을 이용한 몽고DB 이용)Python/Python Programming 2019. 11. 6. 20:32
1. 몽고DB 샘플 도큐먼트 생성 > use testdb switched to db testdb > db testdb > db.book.insert({"name": "testdb", "author": "pydole"}); WriteResult({ "nInserted" : 1 }) > show dbs # document가 하나라도 생성이 되어야 db가 보인다 admin 0.000GB config 0.000GB local 0.000GB testdb 0.000GB 2. 몽고DB 인증모드 사용. (/etc/mongod.conf) security: authorization: enabled 3. pymongo 모듈 설치 pip install pymongo Collecting pymongo ... ... ... Su..