मेरे पास एक JSON फाइल है जिसे मैं एक CSV फाइल में बदलना चाहता हूं। मैं पायथन के साथ यह कैसे कर सकता हूं?
मैंने कोशिश की:
import json
import csv
f = open('data.json')
data = json.load(f)
f.close()
f = open('data.csv')
csv_file = csv.writer(f)
for item in data:
csv_file.writerow(item)
f.close()
हालांकि, यह काम नहीं किया। मैं Django और मेरे द्वारा प्राप्त त्रुटि का उपयोग कर रहा हूं:
file' object has no attribute 'writerow'
मैंने तब निम्नलिखित कोशिश की:
import json
import csv
f = open('data.json')
data = json.load(f)
f.close()
f = open('data.csv')
csv_file = csv.writer(f)
for item in data:
f.writerow(item) # ← changed
f.close()
मैं तब त्रुटि प्राप्त करता हूं:
sequence expected
नमूना json फ़ाइल:
[{
"pk": 22,
"model": "auth.permission",
"fields": {
"codename": "add_logentry",
"name": "Can add log entry",
"content_type": 8
}
}, {
"pk": 23,
"model": "auth.permission",
"fields": {
"codename": "change_logentry",
"name": "Can change log entry",
"content_type": 8
}
}, {
"pk": 24,
"model": "auth.permission",
"fields": {
"codename": "delete_logentry",
"name": "Can delete log entry",
"content_type": 8
}
}, {
"pk": 4,
"model": "auth.permission",
"fields": {
"codename": "add_group",
"name": "Can add group",
"content_type": 2
}
}, {
"pk": 10,
"model": "auth.permission",
"fields": {
"codename": "add_message",
"name": "Can add message",
"content_type": 4
}
}
]
jq
जैसा कि यहाँ बताया गया है, इसका एक सरल तरीका है: stackoverflow.com/questions/32960857/…