Last active
August 24, 2022 13:10
-
-
Save brucewlee/5ea66c2d2940ef85a39465286c57e20e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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