Configure uma barra de progresso para exibir o andamento de tarefas de upload ou download.
Observações
Este tópico usa o endpoint público da região China (Hangzhou). Para acessar o OSS a partir de outros serviços da Alibaba Cloud na mesma região, use um endpoint interno. Para obter mais informações sobre regiões e endpoints do OSS, consulte Regiões e endpoints.
As credenciais de acesso são obtidas de variáveis de ambiente. Para saber como configurar credenciais de acesso, consulte Configurar credenciais de acesso (Python SDK V1).
Este exemplo demonstra como criar uma instância OSSClient com um endpoint do OSS. Para outras configurações, como uso de domínio personalizado ou autenticação com credenciais do Security Token Service (STS), consulte Inicialização.
Exemplos
O código a seguir mostra como usar uma barra de progresso ao baixar um objeto com bucket.get_object_to_file:
# -*- coding: utf-8 -*-
from __future__ import print_function
import os
import sys
import oss2
from oss2.credentials import EnvironmentVariableCredentialsProvider
# Obtain access credentials from environment variables. Before you run the sample code, make sure that the OSS_ACCESS_KEY_ID and OSS_ACCESS_KEY_SECRET environment variables are configured.
auth = oss2.ProviderAuthV4(EnvironmentVariableCredentialsProvider())
# Specify the endpoint of the region in which the bucket is located. For example, if the bucket is located in the China (Hangzhou) region, set the endpoint to https://oss-cn-hangzhou.aliyuncs.com.
endpoint = "https://oss-cn-hangzhou.aliyuncs.com"
# Specify the ID of the region that maps to the endpoint. Example: cn-hangzhou. This parameter is required if you use the signature algorithm V4.
region = "cn-hangzhou"
# Specify the name of your bucket.
bucket = oss2.Bucket(auth, endpoint, "yourBucketName", region=region)
# If Content-Length is not in the HTTP response headers, the value of total_bytes is None.
# consumed_bytes specifies the size of data that has been downloaded. Unit: bytes.
# total_bytes specifies the total size of the object that you want to download. Unit: bytes.
def percentage(consumed_bytes, total_bytes):
if total_bytes:
rate = int(100 * (float(consumed_bytes) / float(total_bytes)))
# rate specifies the download progress.
print('\r{0}% '.format(rate), end='')
sys.stdout.flush()
# progress_callback is an optional parameter used to return progress information.
bucket.get_object_to_file('yourObjectName', 'yourLocalFile', progress_callback=percentage)
Referências
Para obter o código de exemplo completo sobre configuração de barras de progresso em downloads de objetos, visite o GitHub.