现在,我已成功在spyder中安装并导入pymongo,但是当我尝试导入数据库本身时,它将抛出"ModuleNotFoundError: No module named 'mydb'"
。
我在本地系统中搜索了很多时间的mongodb数据库文件(已经创建),但是没有找到。
from pymongo import MongoClient
from mydb import mycollection
MongoClient("localhost",27017)
data={"Name":"lineEdit","Age":"lineEdit_2"}
mycollection.insert_one(data)
“我希望可以“成功插入数据”。