Excel은 가장 인기 있고 널리 사용되는 스프레드시트 응용 프로그램 중 하나입니다. 이를 통해 데이터를 표 형식으로 구성, 분석 및 저장할 수 있습니다. Python을 사용하여 Excel 파일의 내용을 쉽게 추가, 편집 또는 삭제할 수 있습니다. 이 글에서는 Python에서 REST API를 사용하여 Excel 시트를 편집하는 방법에 대해 알아봅니다.
이 문서에서는 다음 항목을 다룹니다.
- Excel 스프레드시트 편집기 REST API 및 Python SDK
- Python에서 REST API를 사용하여 Excel 파일 편집
- Python을 사용하여 Excel 시트에 테이블 추가
Excel 스프레드시트 편집기 REST API 및 Python SDK
XLSX 파일을 수정하기 위해 GroupDocs.Editor Cloud의 Python SDK API를 사용합니다. 지원되는 형식의 문서를 편집할 수 있습니다. 콘솔에서 다음 명령을 사용하여 설치하십시오.
pip install groupdocs_editor_cloud
언급된 단계를 따르기 전에 대시보드에서 클라이언트 ID와 암호를 가져오십시오. ID와 시크릿이 있으면 아래와 같이 코드를 추가합니다.
# 이 코드 예제는 클라이언트 ID와 암호를 코드에 추가하는 방법을 보여줍니다.
client_id = "659fe7da-715b-4744-a0f7-cf469a392b73"
client_secret = "b377c36cfa28fa69960ebac6b6e36421"
my_storage = ""
configuration = groupdocs_editor_cloud.Configuration(client_id, client_secret)
configuration.api_base_url = "https://api.groupdocs.cloud"
Python에서 REST API를 사용하여 Excel 파일 편집
아래의 간단한 단계에 따라 Excel 파일을 편집할 수 있습니다.
문서 업로드
먼저 아래 제공된 코드 예제를 사용하여 XLSX 파일을 클라우드에 업로드합니다.
# 이 코드 예제는 Excel 파일을 클라우드에 업로드하는 방법을 보여줍니다.
# API 인스턴스 생성
file_api = groupdocs_editor_cloud.FileApi.from_config(configuration)
# 샘플 파일 업로드
request = groupdocs_editor_cloud.UploadFileRequest("sample.xlsx", "C:\\Files\\\Editor\\sample.xlsx", my_storage)
response = file_api.upload_file(request)
결과적으로 업로드된 XLSX 파일은 클라우드 대시보드의 파일 섹션에서 사용할 수 있습니다.
Python에서 Excel 스프레드시트 데이터 편집
아래 단계에 따라 Excel 시트의 내용을 편집할 수 있습니다.
- 먼저 FileApi 및 EditApi의 인스턴스를 생성합니다.
- 다음으로 업로드된 XLSX 파일 경로를 제공합니다.
- 그런 다음 파일을 HTML 문서로 다운로드합니다.
- 다음으로 다운로드한 HTML 파일을 문자열로 읽습니다.
- 그런 다음 HTML을 편집하고 업데이트된 HTML 문서를 저장합니다.
- 그런 다음 업데이트된 HTML 파일을 업로드합니다.
- 마지막으로 EditApi.save() 메서드를 사용하여 HTML을 다시 XLSX에 저장합니다.
다음 코드 샘플은 Python에서 REST API를 사용하여 Excel 시트 데이터를 편집하는 방법을 보여줍니다.
# 이 코드 예제는 Excel 시트의 내용을 편집하는 방법을 보여줍니다.
# API 초기화
editApi = groupdocs_editor_cloud.EditApi.from_keys(client_id, client_secret)
fileApi = groupdocs_editor_cloud.FileApi.from_keys(client_id, client_secret)
# 업로드된 문서를 편집 가능한 상태로 로드
fileInfo = groupdocs_editor_cloud.FileInfo("sample.xlsx")
# 스프레드시트 로드 옵션 정의
loadOptions = groupdocs_editor_cloud.SpreadsheetLoadOptions()
loadOptions.file_info = fileInfo
# 출력 폴더 경로 제공
loadOptions.output_path = "output"
# 편집할 워크시트 색인 제공
loadOptions.worksheet_index = 0
# 시트 로드
loadResult = editApi.load(groupdocs_editor_cloud.LoadRequest(loadOptions))
# HTML 문서 다운로드
htmlFile = fileApi.download_file(groupdocs_editor_cloud.DownloadFileRequest(loadResult.html_path))
html = ""
with open(htmlFile, 'r') as file:
html = file.read()
# 수정...
html = html.replace("Welcome", "This is a sample sheet!")
# html을 저장소에 다시 업로드
with open(htmlFile, 'w') as file:
file.write(html)
fileApi.upload_file(groupdocs_editor_cloud.UploadFileRequest(loadResult.html_path, htmlFile))
# html을 다시 xlsx에 저장
saveOptions = groupdocs_editor_cloud.SpreadsheetSaveOptions()
saveOptions.file_info = fileInfo
saveOptions.output_path = "edited.xlsx"
saveOptions.html_path = loadResult.html_path
saveOptions.resources_path = loadResult.resources_path
saveResult = editApi.save(groupdocs_editor_cloud.SaveRequest(saveOptions))
# 완료
print("Document edited: " + saveResult.path)
업데이트된 파일 다운로드
위의 코드 샘플은 편집된 Excel 파일(XLSX)을 클라우드에 저장합니다. 다음 코드 샘플을 사용하여 다운로드할 수 있습니다.
# 이 코드 예제는 업데이트된 Excel 파일을 다운로드하는 방법을 보여줍니다.
# API 초기화
file_api = groupdocs_editor_cloud.FileApi.from_config(configuration)
# 파일 다운로드
request = groupdocs_editor_cloud.DownloadFileRequest("edited.xlsx", my_storage)
response = file_api.download_file(request)
# 다운로드한 파일을 작업 디렉토리로 이동
shutil.move(response, "C:\\Files\\Editor\\")
Python을 사용하여 Excel 시트에 테이블 추가
앞에서 언급한 단계에 따라 Excel 시트에 테이블을 추가할 수 있습니다. 그러나 아래와 같이 문서에 테이블을 추가하려면 HTML을 업데이트해야 합니다.
html = html.replace("</TABLE>", """</TABLE> <br/><table style="width: 100%;background-color: #dddddd;border: 1px solid black;">
<caption style=\"font-weight:bold;\"> Persons List</caption>
<tr><th style="background-color: #04AA6D; color: white;">First Name</th><th style="background-color: #04AA6D; color: white;">Last Name</th><th style="background-color: #04AA6D; color: white;">Age</th></tr>
<tr><td>Jill</td><td>Smith</td><td>50</td></tr>
<tr><td>Eve</td><td>Jackson</td><td>94</td></tr>
</table>""")
다음 코드 샘플은 Python에서 REST API를 사용하여 Excel 스프레드시트에 테이블을 추가하는 방법을 보여줍니다. 앞에서 언급한 단계에 따라 파일을 업로드하고 다운로드하십시오.
# 이 코드 예제는 Excel 시트를 편집하고 새 테이블을 삽입하는 방법을 보여줍니다.
# API 초기화
editApi = groupdocs_editor_cloud.EditApi.from_keys(client_id, client_secret)
fileApi = groupdocs_editor_cloud.FileApi.from_keys(client_id, client_secret)
# 업로드된 문서를 편집 가능한 상태로 로드
fileInfo = groupdocs_editor_cloud.FileInfo("sample.xlsx")
# 스프레드시트 로드 옵션 정의
loadOptions = groupdocs_editor_cloud.SpreadsheetLoadOptions()
loadOptions.file_info = fileInfo
# 출력 폴더 경로 제공
loadOptions.output_path = "output"
# 편집할 워크시트 색인 제공
loadOptions.worksheet_index = 0
# 시트 로드
loadResult = editApi.load(groupdocs_editor_cloud.LoadRequest(loadOptions))
# HTML 문서 다운로드
htmlFile = fileApi.download_file(groupdocs_editor_cloud.DownloadFileRequest(loadResult.html_path))
html = ""
with open(htmlFile, 'r') as file:
html = file.read()
# 표 삽입
html = html.replace("</TABLE>", """</TABLE> <br/><table style="width: 100%;background-color: #dddddd;border: 1px solid black;">
<caption style=\"font-weight:bold;\"> Persons List</caption>
<tr><th style="background-color: #04AA6D; color: white;">First Name</th><th style="background-color: #04AA6D; color: white;">Last Name</th><th style="background-color: #04AA6D; color: white;">Age</th></tr>
<tr><td>Jill</td><td>Smith</td><td>50</td></tr>
<tr><td>Eve</td><td>Jackson</td><td>94</td></tr>
</table>""")
# html을 저장소에 다시 업로드
with open(htmlFile, 'w') as file:
file.write(html)
fileApi.upload_file(groupdocs_editor_cloud.UploadFileRequest(loadResult.html_path, htmlFile))
# html을 다시 xlsx에 저장
saveOptions = groupdocs_editor_cloud.SpreadsheetSaveOptions()
saveOptions.file_info = fileInfo
saveOptions.output_path = "edited.xlsx"
saveOptions.html_path = loadResult.html_path
saveOptions.resources_path = loadResult.resources_path
saveResult = editApi.save(groupdocs_editor_cloud.SaveRequest(saveOptions))
# 완료
print("Document edited: " + saveResult.path)
온라인 시도
위의 API를 사용하여 개발된 다음 무료 온라인 XLSX 편집 도구를 사용해 보십시오. https://products.groupdocs.app/editor/xlsx
결론
이 기사에서 우리는 다음을 배웠습니다.
- 클라우드에서 Excel 시트 데이터를 편집하는 방법
- Python을 사용하여 Excel 시트에 테이블을 추가하는 방법;
- Excel 파일을 클라우드에 업로드합니다.
- 클라우드에서 업데이트된 Excel 파일을 다운로드하는 방법.
또한 문서를 사용하여 GroupDocs.Editor Cloud API에 대해 자세히 알아볼 수 있습니다. 또한 브라우저를 통해 직접 API를 시각화하고 상호 작용할 수 있는 API 참조 섹션을 제공합니다. 모호한 점이 있으면 언제든지 포럼으로 문의해 주십시오.