🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

gdrivepy

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gdrivepy

Simplest way for using google drive api

1.8
PyPI
Maintainers
1

gdrivepy : Google Drive Python API is a simplest way to access the google drive api

this setup file simply uses the google drive api and work accordingly

Features

  • Authentication of users
  • Upload Files
  • Create Folders
  • List Files
  • More coming soon

How To Use

::

from gdrivepy import auth,upload,createFolder,listFiles
if __name__ == '__main__':
    service = auth('credential/data.json') #credential Path
    # List Files 
    data = listFiles(service)
    print(data['data'])

    #upload file
    data = upload(service, 'test.pdf', './files/sample.pdf', 'application/pdf', 'FOLDER-ID-HERE(optional)') #access, new name, file path , mime type,folder_id (folder id of parent folder leave blank if root folder)
    print(data)
    
    #Create a folder
    data = createFolder(service, 'folderName' 'FOLDER-ID-HERE(optional)'); # access, new folder name, folder_id (folder id of parent folder leave blank if root folder)
    print(data)

Keywords

GOOGLE DRIVE PYTHON

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts