[etc] 엑셀(Excel)파일을 JSON으로 변환하기
(구글 스프레드 시트로 작업한 데이터베이스 파일을 엑셀로 내보내거나) 엑셀파일을 저장한다.
다음 파일을 다운받는다. ExceltoJson.py (0.01MB)
파일 내용이 300줄이 넘어가기 때문에 미리보기만 올리자면 다음과 같다.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
import pandas as pd `import numpy as np import math import argparse parser = argparse.ArgumentParser(description="A simple program that converts xlsx files to json files.", epilog = ''' # MODE 0 : opentime, closetime, breaktime are seperate values. [OPENTIME],[CLOSETIME],[BREAKSTART-BREAKEND] # MODE 1 : opentime, closetime, breaktime are in a list. [OPENTIME,CLOSETIME,BREAKSTART-BREAKEND] # MODE 2 : opentime, closetime, breaktime are in a list. [OPENTIME,CLOSETIME,[BREAKSTART,BREAKEND]] # MODE 3 : opentime, closetime, breaktime are in a list, breaktime is broken into two parts. [OPENTIME,CLOSETIME,BREAKSTART,BREAKEND] ''', formatter_class=argparse.RawTextHelpFormatter) NO_OF_TAGS = 17 VERSION = 1.3
이 파일과 엑셀파일을 같은 폴더에 위치시킨 후 이 위치에서 powershell을 연다.
- 파이썬과 pandas가 설치되어 있어야 한다.
- 판다스가 설치되어 있지 않다면 pip install pandas 명령어를 통해 설치한다.
python ExcelToJson.py -f food_jason -o food_jason -v -m 3 -s FoodList_mk2 --drop-null
명령어를 실행한다.ImportError: Missing optional dependency 'openpyxl'.
오류가 생긴다면pip install openpyxl
명령어로 설치한다.- 오류가 없다면
python ExcelToJson.py -f food_jason -o food_jason -v -m 3 -s FoodList_mk2 --drop-null
명령어를 실행했을 때 위치한 폴더에 json파일이 만들어진다.
파이어베이스 storage에 업로드하면 끝난다.
- (해당 포스트는 flutter-firebase 프로젝트를 진행하는 맥락에서 쓰여졌다.)
- 이름이 같은 파일이 있을때 그냥 업로드 해도 자동으로 덮어씌워진다.
This post is licensed under CC BY 4.0 by the author.