본문 바로가기

살짝 돌려봤는데 잘되네.

원하는 파일명 쓰고, 저장해서 활용해 보세요.

 

GitHub - microsoft/markitdown: Python tool for converting files and office documents to Markdown.

 

GitHub - microsoft/markitdown: Python tool for converting files and office documents to Markdown.

Python tool for converting files and office documents to Markdown. - microsoft/markitdown

github.com

 

간단하게 아래와 같이 install 하고 사용하면 됨.

pip install markitdown

 

파일로 저장하기 예제

from markitdown import MarkItDown

# MarkItDown 객체 생성
markitdown = MarkItDown()

# 문서 변환
result = markitdown.convert("test.docx")

# 변환된 내용을 a.md로 저장
with open("a.md", "w", encoding="utf-8") as file:
    file.write(result.text_content)

print("변환된 내용이 a.md로 저장되었습니다.")

 

 

B로그0간

개발 관련 글과 유용한 정보를 공유하는 공간입니다.