IT

jsonl 파일 읽기 (python)

고양이호랑이 2022. 7. 19. 15:32
import jsonlines

with jsonlines.open(file_path) as f:
	for line in f.iter():
		print(line)
import json

with open(file_path) as f:
	df = pd.DataFrame(json.loads(line) for line in f)

jsonl to dataframe

'IT' 카테고리의 다른 글

flutter 에러 해결  (0) 2022.06.28
Flutter 강의 추천  (0) 2022.06.15
라즈베리파이4 google assistant api 에러  (0) 2022.04.17
graphviz 에러 해결  (0) 2022.04.14
PEP 8 (파이썬 개선 제안 #8)  (0) 2022.01.31