Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

simple-drive

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

simple-drive

Use Google Drive API in the simplest way

  • 2.0.9
  • PyPI
  • Socket score

Maintainers
1

simple-drive

Downloads Pypi contributions welcome MIT

simple-drive.jpg

This package is designed to make it easier for Python users to utilize the Google Drive API. The syntax is concise and easy to understand, and it was developed based on the Google Drive API documentation.

Main features

Files

  • create
  • create_shortcut
  • upload
  • get
  • move
  • copy
  • rename
  • restrict
  • list
  • download
  • export
  • empty_trash
  • trash
  • delete

Perissions

  • add
  • transfer_ownership
  • get
  • update
  • list
  • remove

Comments

  • create
  • get
  • update
  • list
  • delete

Replies

  • create
  • get
  • update
  • list
  • delete

Revisions

  • get
  • list
  • delete

Installation

Install from GitHub

pip install --upgrade git+https://github.com/tranngocminhhieu/simple-drive.git

Install from PyPI

pip install --upgrade simple-drive

User manual

Please read the Documents.

Quick start example:

from simple_drive import Auth, Drive, MimeTypes, Roles

# Authorize with a service account
auth = Auth.from_service_account_file(file='service_account.json')

# Drive object
drive = Drive(auth=auth, verbose=True)

# Create a folder
folder = drive.Files.create(name='Example folder', mime_type=MimeTypes.FOLDER, dest_folder_id=None)

# Add editor permission for someone
drive.Permissions.add(file_id=folder['id'], email='her@gmail.com', role=Roles.EDITOR)

# ...

I welcome your contributions!

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