미적재건 엑셀 추출

1. API 응답값 확인 중 미승인 건, JSON 으로 추출

API 호출 https://mgpweb.spazon.com/crsck/payletter/card/{date}

2. python pandas ExcelWriter 사용

import pandas as pd

# 데이터 배열 (응답값 - JSON 리스트)
data = [
{
"user_no": "4445319",
"tid": "golping-202310196259846",
"order_no": "2023101901135558662",
"amount": 53100,
"transaction_date": "2023-10-19 01:15:47"
},
# 나머지 데이터도 여기에 추가
]

# 데이터프레임 생성
df = pd.DataFrame(data)

# 데이터프레임을 엑셀 파일로 저장
excel_writer = pd.ExcelWriter('transaction_data.xlsx', engine='openpyxl')
df.to_excel(excel_writer, index=False, sheet_name='Transaction Data')
excel_writer._save()

엑셀 추출 결과

image.png
Want to print your doc?
This is not the way.
Try clicking the ⋯ next to your doc name or using a keyboard shortcut (
CtrlP
) instead.