web-dev-qa-db-fra.com

Google Cloud Storage - Comment télécharger un fichier à partir de Python 3?

Comment puis-je télécharger un fichier sur Google Cloud Storage à partir de Python 3? Finalement, Python 2, si c'est impossible avec Python 3.

J'ai regardé et cherché, mais je n'ai pas trouvé de solution qui fonctionne réellement. J'ai essayé boto , mais lorsque j'essaie de générer le fichier .boto nécessaire via gsutil config -e, il continue de signaler que je dois configurer l'authentification via gcloud auth login. Cependant, j’ai fait ce dernier plusieurs fois, sans que cela n’aide.

14
aknuds1

Utilisez la bibliothèque standard gcloud , qui prend en charge Python 2 et Python 3.

Exemple de téléchargement de fichier sur un stockage en nuage

from gcloud import storage
from oauth2client.service_account import ServiceAccountCredentials
import os


credentials_dict = {
    'type': 'service_account',
    'client_id': os.environ['BACKUP_CLIENT_ID'],
    'client_email': os.environ['BACKUP_CLIENT_EMAIL'],
    'private_key_id': os.environ['BACKUP_PRIVATE_KEY_ID'],
    'private_key': os.environ['BACKUP_PRIVATE_KEY'],
}
credentials = ServiceAccountCredentials.from_json_keyfile_dict(
    credentials_dict
)
client = storage.Client(credentials=credentials, project='myproject')
bucket = client.get_bucket('mybucket')
blob = bucket.blob('myfile')
blob.upload_from_filename('myfile')
32
aknuds1

Une fonction simple pour télécharger des fichiers dans un compartiment gcloud.

from google.cloud import storage

def upload_to_bucket(blob_name, path_to_file, bucket_name):
    """ Upload data to a bucket"""

    # Explicitly use service account credentials by specifying the private key
    # file.
    storage_client = storage.Client.from_service_account_json(
        'creds.json')

    #print(buckets = list(storage_client.list_buckets())

    bucket = storage_client.get_bucket(bucket_name)
    blob = bucket.blob(blob_name)
    blob.upload_from_filename(path_to_file)

    #returns a public url
    return blob.public_url

Vous pouvez générer un fichier d'informations d'identification à l'aide de ce lien: https://cloud.google.com/storage/docs/reference/libraries?authuser=1#client-libraries-install-python

6
adam shamsudeen

Importe la bibliothèque client Google Cloud

from google.cloud import storage
import os
os.environ["GOOGLE_APPLICATION_CREDENTIALS"]="C:/Users/siva/Downloads/My First Project-e2d95d910f92.json" got credentials from //https://cloud.google.com/docs/authentication/getting-started#auth-cloud-implicit-python

Instancie un client

storage_client = storage.Client()

buckets = list(storage_client.list_buckets())

bucket = storage_client.get_bucket("ad_documents")//your bucket name

blob = bucket.blob('D:/Download/02-06-53.pdf')
blob.upload_from_filename('D:/Download/02-06-53.pdf')
print(buckets)
1
James Siva