Skip to content

Instantly share code, notes, and snippets.

@brucewlee
Last active August 24, 2022 13:10
Show Gist options
  • Save brucewlee/5ea66c2d2940ef85a39465286c57e20e to your computer and use it in GitHub Desktop.
Save brucewlee/5ea66c2d2940ef85a39465286c57e20e to your computer and use it in GitHub Desktop.
# https://sooeunoh.tistory.com/7
with open(os.path.join({FILE_PATH}, {ITEM_FILE}), encoding='utf-8-sig') as f: # 한글 데이터인 경우 encoding 설정
data = ndjson.load(f) # ndjson 으로 읽고
org_data = pd.DataFrame(data)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment