Sie müssen JSON in Python-Objekte konvertieren, die PyMongo dann zum Senden an MongoDB in BSON konvertiert. Verwenden Sie zum Konvertieren von JSON in Python-Objekte das in PyMongo enthaltene Modul „bson.json_util“:
from bson import json_util
data = json_util.loads(response.read())
Die Python-Standardfunktion json.loads() funktioniert auch, aber json_util.loads() von PyMongo handhabt einige MongoDB-spezifische Details besser.