본문 바로가기
프로그래밍_기타

google colab, drive 연동, 파일 다루기

by wjwkddyd221001 2022. 10. 1.

1. google drive mount

from google.colab import drive
drive.mount('/content/drive')

 

2. 타인의 google drive에서 파일 가져오기, 압축 해제하기

!pip install gdown
import gdown
import shutil
import zipfile


google_path = 'https://drive.google.com/uc?id='
file_id = ''
output_name = 'train.zip'

## 파일 다운로드
gdown.download(google_path + file_id, output_name, quiet=False)

## 파일을 ROOT_PATH로 이동
shutil.move("./" + output_name, ROOT_PATH)

## 파일 압축해제
with zipfile.ZipFile(ROOT_PATH + "/" + output_name) as z:
    z.extractall(ROOT_PATH)

file_id의 경우: 다음과 같이 설정하면 된다

사진 출처 : https://blog.naver.com/jyjoung/222193547021

3. 파일 다운로드

from google.colab import files
file_path = ''
files.download(file_path)

'프로그래밍_기타' 카테고리의 다른 글

CSS selector(선택자) 정리  (0) 2022.12.10
서울시 실시간 도시데이터 api 활용  (0) 2022.12.06
리눅스 디렉토리 관련 명령어  (0) 2022.10.11
!git, !wget, !zip  (0) 2022.10.01
colab 사양 확인  (0) 2022.10.01