728x90
일반적인 이미지 다운로드
try:
urllib.request.urlretrieve(img_url, input_path)
except UnicodeEncodeError:
encoded_url = urllib.parse.quote(img_url, safe=':/')
urllib.request.urlretrieve(encoded_url, input_path)
img_url 이 한글일 경우 인코딩 에러가 발생할 수 있어서 이렇게 해줘야 함
워드 파일에 저장할 때
response = requests.get(i_src)
time.sleep(1.5)
img = BytesIO(response.content)
document.add_picture(img, width=Inches(6))
728x90
'나를 위한 코드' 카테고리의 다른 글
디렉토리 폴더 밑에 있는 파일 리스트 가져오기 (0) | 2023.08.29 |
---|---|
os.remove permission 에러 날 때 (0) | 2023.08.29 |
qt designer 날짜 dateedit 설정 (0) | 2023.08.28 |
gui 뜨기 전 로딩 화면 만들기 (0) | 2023.08.28 |
파이썬 파일 copy (0) | 2023.08.25 |
댓글