Skip to main content

GoogleCloudStorage

A class to connect to Google Cloud Storage. It will connect to one bucket in the storage account. Note that Google Cloud Storage does not support api key authentication. Therefore, before using this class, you need to log in with gcloud command line tool and save the credentials first. Parameters:
  • bucket_name (str): The name of the bucket.
  • create_if_not_exists (bool, optional): Whether to create the bucket if it does not exist. Defaults to True.
  • anonymous (bool, optional): Whether to use anonymous access. Defaults to False.
  • References:
  • https: //cloud.google.com/storage
  • https: //cloud.google.com/docs/authentication/api-keys

init

canonicalize_path

Canonicalize the path for Google Cloud Storage. Parameters:
  • file_path (PurePath): The path to be canonicalized.
Returns: Tuple[str, str]: The canonicalized file key and file name.

_prepare_and_check

Check privileges and existence of the bucket.

_put_file

Put a file to the GCloud bucket. Parameters:
  • file_key (str): The path to the object in the bucket.
  • file (File): The file to be uploaded.

_get_file

Get a file from the GCloud bucket. Parameters:
  • file_key (str): The path to the object in the bucket.
  • filename (str): The name of the file.
Returns: File: The object from the S3 bucket.

_upload_file

Upload a local file to the GCloud bucket. Parameters:
  • local_file_path (Path): The path to the local file to be uploaded.
  • remote_file_key (str): The path to the object in the bucket.

_download_file

Download a file from the GCloud bucket to the local system. Parameters:
  • local_file_path (Path): The path to the local file to be saved.
  • remote_file_key (str): The key of the object in the bucket.

_object_exists

Check if the object exists in the GCloud bucket. Parameters:
  • file_key: The key of the object in the bucket.
Returns: bool: Whether the object exists in the bucket.