Pandas DF ke MongoDB

db.myCollection.insert_many(df.apply(lambda x: x.to_dict(), axis=1).to_list())
Bloody Booby