728x90
설치
pip install python-docx |
문서 생성
from docx import Document
document = Document()
document.save("filename.docx")
문서 작성
paragraph = document.add_paragraph("문단 추가\n")
paragraph.add_run("생성한 문단에 글 추가")
컴퓨터에 있는 이미지 넣기
from docx.shared import Cm
document.add_picture('사진파일.jpg',width= Cm(10), height= Cm(10))
웹 사이트에 있는 이미지 넣기
import requests
from io import BytesIO
from docx import Document
from docx.shared import Inches
response = requests.get("https://이미지 주소")
img = BytesIO(response.content)
document.add_picture(img, width=Inches(6))
728x90
'나를 위한 코드' 카테고리의 다른 글
파이썬 openpyxl 을 사용할 때 연속해서 save하지 말 것 (0) | 2023.04.06 |
---|---|
파이썬 첨부파일 내 컴퓨터에 다운로드 받기 (셀레니움) (0) | 2023.04.05 |
딕셔너리 첫번째 값 가져오기 (0) | 2023.03.28 |
파이썬 폴더 만들기 (0) | 2023.03.27 |
파이썬 정규식, 파일 제목으로 쓸 수 없는 기호 제거하기 (0) | 2023.03.24 |
댓글