Skip to content

kiwicampus/gcp-io

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

29 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

gcp-io

codecov

This library provides an easy interface to do some common I/O tasks on Google Cloud Storage (GCS). Those include:

  • Reading/writing an image file from and to GCS.
  • Reading/writing a video file from and to GCS.
  • Reading/writing a yaml file from and to GCS.
  • Uploading/downloading a file from and to GCS.
  • Checking md5 checksum of a file.
  • Checking if a file exists in GCS.
  • Listing directories in GCS.

Installation

pip install git+https://github.com/kiwicampus/gcp-io.git@main

or with poetry

poetry add git+https://github.com/kiwicampus/gcp-io.git@main

Usage

from gcp_io import GCPInterface

# this will try to load credentials from environment variable 
# GOOGLE_APPLICATION_CREDENTIALS or from gsutil if installed
interface = GCPInterface()

# this will try to load credentials from a .json file
interface = GCPInterface("/key/to/credentials.json")

# this will be authenticated directly using a storage.Client object
from google.cloud import storage
interface = GCPInterface(storage.Client())

# Use its methods comfortably
image = interface.read_image("gs://bucket/path/to/image.jpg")
interface.write_image("gs://bucket/path/to/image.jpg", image)

Contributing

Feel free to send PRs if you want to implement something or to propose changes. For that remember to run the tests and if implementing something new to make the proper tests and coverage.

Running the tests

Because of the nature of this library you'll need to be authenticated to google cloud. Our test bucket is public so anyone authenticated could run the tests. For this purpose you need to set the GOOGLE_APPLICATION_CREDENTIALS environment variable to your .json authentification file. Also you need to install pytest and pytest-cov. After that just run:

pytest test

About

No description or website provided.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages