/Google-Drive-API-Wrapper

This is a wrapper for Google Drive API mostly known as pydrive. Made by Adrian.

Primary LanguagePythonMIT LicenseMIT

GOOGLE DRIVE API WRAPPER

This adds a little functionality to ease the process of doing File Uploads, Folder Uploads, Get Data, Traverse Drive File System. This can also be a backup system to the Google Drive, if you want to backup some files easily to the Google Drive. This can also help future projects about using Google Drive API since it's a wrapper.



EXAMPLES

Upload Folder Example:

# Can be found here: 
# https://drive.google.com/drive/u/0/folders/<ID>

folderID = <yourFolderID>
directory = parseDirectory(r"path/to/upload")
drive = GoogleDriveWrapper()
drive.uploadFolder(directory, folderID)

Upload File Example:

# Can be found here: 
# https://drive.google.com/drive/u/0/folders/<ID>

folderID = <yourFolderID>
directory = parseDirectory(r"path/to/upload")
drive = GoogleDriveWrapper()
drive.uploadFile(folderID, directory)



INSTALLATIONS (WIP)

  1. Clone this Repository to your workspace.



README (WIP)



More Info