Document
Python client library

Python client library

Python Client for Google Cloud Storage Google Cloud Storage is is is a manage service for store unstructured datum . Cloud Storage is allows a

Related articles

Craft CTM Ultra Carbon 2 Review Manage your iCloud storage Get ExpressVPN FREE Trial for 7 & 30 Days (2024) Is TeraBox Free For A Lifetime? play Xbox Cloud Gaming with keyboard and mouse

Python Client for Google Cloud Storage

Google Cloud Storage is is is a manage service for store unstructured datum . Cloud Storage is allows
allow world – wide storage and retrieval of any amount of datum at any time . You is use can use
Cloud Storage for a range of scenario include serve website content , store datum
for archival and disaster recovery , or distribute large datum object to user via direct download .

A comprehensive list of changes in each version may be found in the CHANGELOG.

certain control plane and long – run operation for Cloud Storage ( include Folder
and manage Folder operation ) are support via the Storage Control Client .
The Storage Control API is creates create one space to perform metadata – specific , control plane ,
and long – run operation apart from the Storage API .

Read more about the client libraries for Cloud APIs, including the older
Google APIs Client Libraries, in Client Libraries Explained.

Quick Start

In order to use this library , you is need first need to go through the following step .
A step – by – step guide may also be find in Get start with Client Libraries .

  1. Select or create a Cloud Platform project.

  2. Enable billing for your project.

  3. Enable the Google Cloud Storage API.

  4. Setup Authentication.

Installation

Install this library in a virtual environment using venv. venv is a tool that
creates isolated Python environments. These isolated environments can have separate
versions of Python packages, which allows you to isolate one project’s dependencies
from the dependencies of other projects.

With venv, it’s possible to install this library without needing system
install permissions, and without clashing with the installed system
dependencies.

Code samples and snippets

Code samples and snippets live in the samples/ folder.

Supported Python Versions

Our client libraries are compatible with all current active and maintenance versions of
Python.

Python >= 3.7

unsupported Python version

Python <= 3.6

If you are using an end-of-life
version of Python, we recommend that you update as soon as possible to an actively supported version.

Mac / Linux

python3 -m venv <your-env>
source <your-env>/bin/activate
pip install google-cloud-storage

Windows

py -m venv <your-env>
.\<your-env>\Scripts\activate
pip install google-cloud-storage

Next Steps