- json 파일 파싱

- 엑셀 파일 저장 (openpyxl)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
import json
from openpyxl import Workbook
 
with open('./detail.json'as file:        # open json file
    data = json.load(file)                # load json data
    wb = Workbook()            # create xlsx file
    ws = wb.active            # create xlsx sheet
 
    ws.append(['ip''vpn''proxy''country''result'])        # input header (first row)
    for data in data['data']:
        ws.append([data['ip'], data['is_vpn'], data['is_proxy'], data['list_whois_info'][0]['org_country_code'], data['result']])    # input json data to xlsx file
 
    wb.save('./test.xlsx')    # save xlsx file
 
cs

'개발 > Python' 카테고리의 다른 글

파이썬 mysql 연동 (pymysql, pandas)  (0) 2020.11.17
파이썬 글자 색 지정  (0) 2020.11.05
메신저 인커밍 훅 (dooray hook)  (0) 2020.10.05
python mysql 연동 (pymysql)  (0) 2020.09.28
python 로그 출력 (logging)  (0) 2020.09.28