728x90
Preferences - PyDev - Interpreters - Python Interpreters에 들어와보면 여기에 cmd창에서 다운받았던것들이 다 모여있습니다.
cmd창말고 여기에서 다운로드 받을수도 있습니다!.
# -*- coding:utf-8 -*-
from pymongo import MongoClient
client = MongoClient('127.0.0.1', 27017)
# client = MongoClient('mongodb://127.0.0.1/27017/')
db = client.test
# db = client['test']
collection = db.score
# collection = db['score']
result = collection.find()
for res in result:
print(res)
728x90