How to use the blobfile.copy function in blobfile

To help you get started, we’ve selected a few blobfile examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github openai / procgen / procgen-build / procgen_build / build_package.py View on Github external
)
    elif platform.system() == "Windows":
        init_vsvars()

    run("pip install cibuildwheel==1.0.0")
    run("cibuildwheel --output-dir wheelhouse")

    if have_credentials:
        print("upload wheels", platform.system())
        input_dir = "wheelhouse"
        output_dir = f"gs://{GCS_BUCKET}/builds/"
        for filename in bf.listdir(input_dir):
            src = bf.join(input_dir, filename)
            dst = bf.join(output_dir, filename)
            print(src, "=>", dst)
            bf.copy(src, dst, overwrite=True)

blobfile

Read GCS, ABS and local paths with the same interface, clone of tensorflow.io.gfile

Unlicense
Latest version published 6 months ago

Package Health Score

73 / 100
Full package analysis