Skip to content

Latest commit

 

History

History
44 lines (28 loc) · 1.2 KB

README.rst

File metadata and controls

44 lines (28 loc) · 1.2 KB

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