본문 바로가기
Python/Python 문법 기초

Python - Zipfile

by 하니__ 2024. 4. 18.
!wget --no-check-certificate \
    https://storage.googleapis.com/mledu-datasets/cats_and_dogs_filtered.zip \
    -O /tmp/cats_and_dogs_filtered.zip

 

 

 

 

import zipfile

 

Zip 파일의 압축을 풀기 위해

Python 라이브러리 중 zipfile 모듈을 임포트 해준다

 

file = zipfile.ZipFile('/tmp/cats_and_dogs_filtered.zip')

 

우선 해당 압축파일을 file이란 이름으로 변수지정해준 뒤

file.extractall('/tmp')

 

.extractall(  ) 을 사용하여 압축을 풀어준다

파라미터안에 경로를 지정하여 그곳에 압축을 풀 수 있다

 

 

 

 

 

 

'Python > Python 문법 기초' 카테고리의 다른 글

Python - 숫자 3자리마다 콤마 , 넣는 방법 format( ) F-string  (0) 2024.05.05
Python 함수 - 기초 예제  (0) 2024.04.05
Python 함수 - 기초  (0) 2024.04.04
반복문 - 기초 예제  (0) 2024.04.04
조건문 - 기초  (0) 2024.04.04