Socket
Socket
Sign inDemoInstall

pygdrive

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pygdrive

Google Drive API for service accounts


Maintainers
1

pygdrive

pygdrive is a wrapper library of google-api-python-client that simplifies uploading and downloading files.

Project Info

Features of pygdrive

  • Simplifies OAuth2.0 with service_account into just a few lines with flexible settings.
  • Wraps Google Drive API into a class which can search, upload and download files and folders.

How to install

You can install PyDrive with regular pip command.

pip install pygdrive

You can install pygdrive from the current development version from GitHub, use:

pip install git+https://github.com/vectorspace-ai/pygdrive.git

Creating credentials.json file

Download client_secrets.json from Google API Console. Share your Drive account's folder to your service account. Your service account's addresss looks like XXX@XXX.iam.gserviceaccount.com. Then your service account can see the shared folder from your Drive account.

Сreating Gdrive object

  from pygdrive import Gdrive
  SCOPES = ['https://www.googleapis.com/auth/drive']
  CREDENTIALS_FILEPATH = 'credentials.json'
  DOWNLOAD_DIR = 'download_dir/'
  UPLOAD_DIR = 'upload_dir/'
  gdrive_object = Gdrive(CREDENTIALS_FILEPATH, SCOPES, DOWNLOAD_DIR, UPLOAD_DIR)

File management made easy

Upload file to certain folder:

Make sure that folder exists and filename appears in UPLOAD_DIR

folder_id, _ = gdrive_object.find_folder('coingecko')
gdrive_object.upload_file(folder_id, 'filename.extension')

You could specify your local upload path if it differs from UPLOAD_DIR:

folder_id, _ = gdrive_object.find_folder('coingecko')
gdrive_object.upload_file(folder_id, 'filename.extension', 'upload_storage/')

Create folder:

parent_id = 'PARENT ID'
folder_id = gdrive_object.create_folder(parent_id, 'folder_name')

Make sure that DOWNLOAD_DIR exists and filename.extension in google drive folder.

file_id, file_name = gdrive_object.find_file('filename.extension')
gdrive_object.download_file(file_id, file_name)

You could specify your local download path if it differs from DOWNLOAD_DIR:

file_id, file_name = gdrive_object.find_file('filename.extension')
gdrive_object.download_file(file_id, file_name, 'some_updated_local_path/')

After uploading/downloading files you should expect uploaded/downloaded file.

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