250x250
Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 설정
- 문서
- IntelliJ
- error
- Eclipse
- AJAX
- git
- SpringBoot
- MySQL
- Source
- STS
- Open Source
- Thymeleaf
- PostgreSQL
- Exception
- 오픈소스
- JavaScript
- ubuntu
- Docker
- jpa
- spring
- oracle
- maven
- MSSQL
- Core Java
- myBatis
- Spring Boot
- Tomcat
- JDBC
- Python
Archives
- Today
- Total
헤르메스 LIFE
[crawling] Web 이미지 다운로드 본문
728x90
from requests import get
from utils.fileUtils import _make_dirs
# 파일 다운로드
# target_dir : '/Temp'
def _download(target_dir, img_url, file_name=None):
if not file_name:
file_name = img_url.split('/')[-1]
_make_dirs(target_dir)
# with open(file_name, "wb") as file: # 같은 폴더 내에 다운로드
with open(target_dir + '/' + file_name, "wb") as file: # 지정폴더 내에 다운로드
response = get(img_url)
file.write(response.content)
import os
# 지정한 경로의 상위 경로를 포함한 모든 경로를 생성한다.
def _make_dirs(path):
try:
if not os.path.exists(path):
os.makedirs(path)
except OSError:
if not os.path.isdir(path):
raise
# 파일명 변경(파일 경로 포함한 Parameter 사용)
def _change_name(original_file, changed_file):
os.rename(original_file, changed_file)
728x90
'Python' 카테고리의 다른 글
[Python] tkinter 를 이용한 GUI 개발 #01 (3) | 2021.12.23 |
---|---|
[Python] DB Connection - Postgresql (0) | 2021.12.18 |
[Ubuntu 20.04] 파이썬 최신 버전(3.9.X) 설치 (0) | 2021.12.14 |
[Python] DB Connection - MSSQL (0) | 2021.03.04 |
[Python] DB Connection - MySQL (0) | 2021.03.04 |