Skip to content

Commit 6c16795

Browse files
authored
updated script and relative imports and fix broken replace (#17)
1 parent 83613ce commit 6c16795

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+17552
-3
lines changed
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# -------------------------------------------------------------------------
2+
# Copyright (c) Microsoft Corporation. All rights reserved.
3+
# Licensed under the MIT License. See License.txt in the project root for
4+
# license information.
5+
# --------------------------------------------------------------------------
6+
from .appendblobservice import AppendBlobService
7+
from .blockblobservice import BlockBlobService
8+
from .models import (
9+
Container,
10+
ContainerProperties,
11+
Blob,
12+
BlobProperties,
13+
BlobBlock,
14+
BlobBlockList,
15+
PageRange,
16+
ContentSettings,
17+
CopyProperties,
18+
ContainerPermissions,
19+
BlobPermissions,
20+
_LeaseActions,
21+
AppendBlockProperties,
22+
PageBlobProperties,
23+
ResourceProperties,
24+
Include,
25+
SequenceNumberAction,
26+
BlockListType,
27+
PublicAccess,
28+
BlobPrefix,
29+
DeleteSnapshot,
30+
)
31+
from .pageblobservice import PageBlobService
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# -------------------------------------------------------------------------
2+
# Copyright (c) Microsoft Corporation. All rights reserved.
3+
# Licensed under the MIT License. See License.txt in the project root for
4+
# license information.
5+
# --------------------------------------------------------------------------
6+
7+
__author__ = 'Microsoft Corp. <[email protected]>'
8+
__version__ = '1.2.0rc1'
9+
10+
# x-ms-version for storage service.
11+
X_MS_VERSION = '2017-11-09'
12+
13+
# internal configurations, should not be changed
14+
_LARGE_BLOB_UPLOAD_MAX_READ_BUFFER_SIZE = 4 * 1024 * 1024

0 commit comments

Comments
 (0)