|
- __version__ = '2.18.0'
-
- from . import models, exceptions, defaults
-
- from .api import Service, Bucket
- from .auth import Auth, AuthV2, AuthV4, AnonymousAuth, StsAuth, AUTH_VERSION_1, AUTH_VERSION_2, AUTH_VERSION_4, \
- make_auth, ProviderAuth, ProviderAuthV2, ProviderAuthV4
- from .http import Session, CaseInsensitiveDict
- from .credentials import EcsRamRoleCredentialsProvider, EcsRamRoleCredential, CredentialsProvider, \
- StaticCredentialsProvider
-
- from .iterators import (BucketIterator, ObjectIterator, ObjectIteratorV2,
- MultipartUploadIterator, ObjectUploadIterator,
- PartIterator, LiveChannelIterator)
-
- from .resumable import resumable_upload, resumable_download, ResumableStore, ResumableDownloadStore, determine_part_size
- from .resumable import make_upload_store, make_download_store
-
- from .compat import to_bytes, to_string, to_unicode, urlparse, urlquote, urlunquote
-
- from .utils import SizedFileAdapter, make_progress_adapter
- from .utils import content_type_by_name, is_valid_bucket_name, is_valid_endpoint
- from .utils import http_date, http_to_unixtime, iso8601_to_unixtime, date_to_iso8601, iso8601_to_date
-
- from .models import BUCKET_ACL_PRIVATE, BUCKET_ACL_PUBLIC_READ, BUCKET_ACL_PUBLIC_READ_WRITE
- from .models import SERVER_SIDE_ENCRYPTION_AES256, SERVER_SIDE_ENCRYPTION_KMS, SERVER_SIDE_ENCRYPTION_SM4, \
- KMS_DATA_ENCRYPTION_SM4
- from .models import OBJECT_ACL_DEFAULT, OBJECT_ACL_PRIVATE, OBJECT_ACL_PUBLIC_READ, OBJECT_ACL_PUBLIC_READ_WRITE
- from .models import BUCKET_STORAGE_CLASS_STANDARD, BUCKET_STORAGE_CLASS_IA, BUCKET_STORAGE_CLASS_ARCHIVE, \
- BUCKET_STORAGE_CLASS_COLD_ARCHIVE
- from .models import BUCKET_VERSIONING_ENABLE, BUCKET_VERSIONING_SUSPEND
- from .models import BUCKET_DATA_REDUNDANCY_TYPE_LRS, BUCKET_DATA_REDUNDANCY_TYPE_ZRS
-
- from .crypto import LocalRsaProvider, AliKMSProvider, RsaProvider, EncryptionMaterials
- from .crypto_bucket import CryptoBucket
|