File: example_aliyun_oss.py

package info (click to toggle)
libcloud 3.8.0%2Brepack-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 27,760 kB
  • sloc: python: 158,354; xml: 19,482; sh: 27; makefile: 11
file content (85 lines) | stat: -rw-r--r-- 2,711 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
# 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')