convert pandas to mongodb code example
Example: pandas df to mongodb
db.myCollection.insert_many(df.apply(lambda x: x.to_dict(), axis=1).to_list())
db.myCollection.insert_many(df.apply(lambda x: x.to_dict(), axis=1).to_list())