我需要在MongoDb中为我的项目存储数据。我是数据库的新手,我不明白出了什么问题。
slideInLeft
我的dbf看起来像这样
slideInRight
有人可以告诉我为什么会收到此错误
import datetime
import time
import threading
import json
from pyowm import OWM
from pymongo import MongoClient
#make the database Connection
client = MongoClient()
db = client.weather_data
API_key = '626065bef7e7c8883ff84245fafffa86'
owm = OWM(API_key)
fc = owm.three_hours_forecast('London,uk')
f = fc.get_forecast()
dbf = f.to_JSON()
lst = f.get_weathers()
db.three_hour_cast.insert_one(dbf)
print(dbf)
您能否告诉我如何纠正此错误