-1
我想從Python腳本連接到MongoDB並直接將數據寫入它。希望DB來填充像這樣:Python + MongoDB:如何從Python連接到MongoDB並寫入數據?
John
Titles Values
color black
age 15
Laly
Titles Values
color pink
age 20
目前,它的寫入像下面的.csv文件,但想將它寫像這樣來的MongoDB:
import csv
students_file = open(‘./students_file.csv’, ‘w’)
file_writer = csv.writer(students_file)
…
file_writer.writerow([name_title]) #John
file_writer.writerow([‘Titles’, ’Values’])
file_writer.writerow([color_title, color_val]) #In first column: color, in second column: black
file_writer.writerow([age_title, age_val]) #In first column: age, in second column: 15
會是什麼使用Python連接到MongoDB並將字符串直接寫入MongoDB的正確方法?
謝謝你在前進,並且一定會給予好評/接受的答案