import os


class GCPTools:

    def __init__(self):
        self.bucket = "somewear-public/atak"

    def listBucket(self):

        os.system(f"gcloud storage cp {atak_version_artifact_out} gs://{self.bucket}")

        client = storage.Client()
        bucket = client.bucket(self.bucket)

        blobs = bucket.list_blobs()

        for blob in blobs:
            print(blob.name)
