0
mongodb &에서 데이터를 가져 오는 중 csv 파일에 json 값을 쓰려면 csv.DictWriter 메서드를 사용하지만 쓰기도하면서 각 행 다음에 빈 행이 생깁니다. .json 데이터를 파이썬/pymongo를 사용하여 csv 파일에 작성하기
빈 줄을 어떻게 피할 수 있습니까?
코드 조각은 :
with open('test_output.csv', 'w') as csvfile:
fields = ['date', 'ns', 'storageSize']
writer = csv.DictWriter(csvfile, fieldnames=fields)
writer.writeheader()
stats = client['db_stats'].coll_stats.find({})
for x in stats:
writer.writerow({'date': x["date"], 'ns': x["ns"], 'storageSize': x["storageSize"]});
(I 내가 여기에 포함되지 않은 일부 데이터 조작을하고 있어요) 출력 :
[파이썬으로 작성된 CSV 파일의 가능한 복제본에는 각 행 사이에 빈 줄이 있습니다.] (https://stackoverflow.com/questions/3348460/csv-file-written-with-python-has-blank-lines-between- 각 행) – GiantsLoveDeathMetal