Server IP : 85.214.239.14 / Your IP : 18.220.227.250 Web Server : Apache/2.4.62 (Debian) System : Linux h2886529.stratoserver.net 4.9.0 #1 SMP Tue Jan 9 19:45:01 MSK 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.18 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : OFF | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /proc/3/root/usr/share/doc/python3-libcloud/examples/ |
Upload File : |
# Licensed to the Apache Software Foundation (ASF) under one or more # contributor license agreements. See the NOTICE file distributed with # this work for additional information regarding copyright ownership. # The ASF licenses this file to You under the Apache License, Version 2.0 # (the "License"); you may not use this file except in compliance with # the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. from libcloud.storage.types import Provider from libcloud.storage.providers import get_driver OSSDriver = get_driver(Provider.ALIYUN_OSS) your_access_key_id = '' your_access_key_secret = '' oss = OSSDriver(your_access_key_id, your_access_key_secret) container_name = 'CONTAINER_NAME_FOR_TEST' object_name = 'OBJECT_NAME_FOR_TEST' local_file_path = 'LOCAL_FILE_FULL_PATH_TO_UPLOAD' upload_object_name = 'OBJECT_NAME_FOR_UPLOAD_FILE' for container in oss.iterate_containers(): print('container: %s' % container) c1 = oss.get_container(container_name) print('Got container %s:' % c1) objects = c1.list_objects() count = len(objects) print('Has %d objects' % count) objects = oss.list_container_objects(c1, prefix='en') print('Has %d objects with prefix "en"' % len(objects)) for each in objects: print(each) obj = oss.get_object(container_name, object_name) print('Got object %s:' % obj) # Download object oss.download_object(obj, object_name, overwrite_existing=True) for trunk in oss.download_object_as_stream(obj): print(trunk) # Upload object obj = oss.upload_object(local_file_path, c1, upload_object_name) # Upload multipart uploads = list(oss.ex_iterate_multipart_uploads(c1)) print('Found %d incompleted uploads' % len(uploads)) if len(uploads) > 0: oss.ex_abort_all_multipart_uploads(c1) print('Abort them all') def data_iter(limit): i = 0 while True: yield i i += 1 if i >= limit: break print('Starting to upload 1MB using multipart api') one_mb = 1024 * 1024 obj = oss.upload_object_via_stream(data_iter(one_mb), c1, upload_object_name) print('Finish uploading') # Delete objects print('Delete object %s' % obj) oss.delete_object(obj) # Create container # c2 = oss.create_container(container_name='20160117') # c2 = oss.create_container(container_name='20160117', # ex_location='oss-cn-beijing') # c2_got = oss.get_container('20160117')