我正在尝试使用Python将JSON文件导入MongoDB。我已经安装了pymongo。我不断收到“ ModuleNotFoundError:没有名为'pymongo'的模块”错误。
import json
from pymongo import MongoClient
client = MongoClient('localhost')
db = client['posts_db']
collection_recent = db['recent']
with open('posts.json') as f:
file_data = json.load(f)
# use collection_currency.insert(file_data) if pymongo version < 3.0
collection_currency.insert_one(file_data)
client.close()