Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
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
  • Socket score

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

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc