Relative Content

Tag Archive for pythongoogle-drive-api

Cannot download file from a share folder using google drive api in python

from google.oauth2 import service_account from googleapiclient.discovery import build import io from googleapiclient.http import MediaIoBaseDownload SERVICE_ACCOUNT_FILE = ‘./sec.json’ SCOPES = [‘https://www.googleapis.com/auth/drive’] credentials = service_account.Credentials.from_service_account_file( SERVICE_ACCOUNT_FILE, scopes=SCOPES) service = build(‘drive’, ‘v3′, credentials=credentials) # ID của thư mục bạn muốn tải file từ đó folder_id = ’14hPLOEFA2PPNZA2G3KpzKYc16FWZdVYS’ query = f”parents = ‘{folder_id}'” results = service.files().list(q=query).execute() print(results) items = […]