Python
jsonl 파일 읽기/쓰기
체봄
2021. 10. 25. 20:29
파일 읽기
import jsonlines # !pip install jsonlines 해주기
with jsonlines.open(읽기 파일 경로) as read_file:
for line in read_file.iter():
print(line)
파일 쓰기
import json
with open(쓰기 파일 경로, encoding='utf-8') as write_file:
write_file.write(json.dumps(dicts, ensure_ascii=False) + "\n")
dicts에 한글이 포함된 경우, ensure_ascii=False를 설정해주면 유니코드로 변환해 저장하지 않고 한글 형태 그대로 저장할 수 있다.
참조한 사이트 :)
https://support.unpaywall.org/support/solutions/articles/44001867300-how-do-i-read-jsonl-files-
https://bramhyun.tistory.com/44
반응형