easyenvi
  • Easy Environment
  • Local Environment
    • Local initialisation
    • Local Operations
      • easyenvi.local.load
      • easyenvi.local.save
      • easyenvi.local.clear_folder
  • Google Cloud Environment
    • Google Cloud initialisation
    • Google Cloud Storage Operations
      • easyenvi.gcloud.GCS.load
      • easyenvi.gcloud.GCS.save
      • easyenvi.gcloud.GCS.download
      • easyenvi.gcloud.GCS.list_files
    • Big Query Operations
      • easyenvi.gcloud.BQ.load
      • easyenvi.gcloud.BQ.write
      • easyenvi.gcloud.BQ.append
      • easyenvi.gcloud.BQ.query
  • SharePoint Environment
    • SharePoint initialisation
    • SharePoint Operations
      • easyenvi.sharepoint.download
      • easyenvi.sharepoint.upload
      • easyenvi.sharepoint.list_files
      • easyenvi.sharepoint.delete_file
  • extra
    • Customise supported formats
Powered by GitBook
On this page
  1. Google Cloud Environment

Google Cloud initialisation

Previouseasyenvi.local.clear_folderNextGoogle Cloud Storage Operations

Last updated 1 year ago

For initialization on Google Cloud, you need to have an account on Google Cloud Platform and create access identifiers.

Then, initialise EasyEnvironment as follows:

from easyenvi import EasyEnvironment

envi = EasyEnvironment(
  gcloud_project_id="your-project-id",
  gcloud_credential_path="path/to/credentials.json",
  GCS_path="gs://your-bucket-name/" # Optional
                  )
  • gcloud_project_id - str GCP project identifier

  • gcloud_credential_path - str path to a .json access credentials

  • GCS_path - str path to a GCS bucket from which to interact

How can I create an account on Google Cloud Platform?
How to create access identifiers on Google CLoud Platform ?