/google_drive_actions

Perform common actions using Google Drive API v3

Primary LanguagePython

Google Drive API

Simple GoogleDriveApplication class to perform common Google Drive actions such as searching files, downloading entire folders, uploading files, deleting files.

Usage

from application import GoogleDriveApplication

GD = GoogleDriveApplication("path-to-client-secret.json")

# Find files
GD.find_files("hello+world", is_folder=False)

# List entire subtree of the specified folder
GD.list_folder("google-drive-id-of-folder", recursive=True)

# Download entire folder
GD.download_folder("google-drive-id-of-folder")

Create a project on Google Cloud Platform

Wizard: https://console.developers.google.com/start/api?id=drive

Instructions:

References