File tree Expand file tree Collapse file tree 4 files changed +8
-6
lines changed Expand file tree Collapse file tree 4 files changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ the standard Python logging APIs to Microsoft Azure Storage.
13
13
Dependencies
14
14
------------
15
15
16
- * azure 0.10 or newer
16
+ * azure-storage
17
17
18
18
Installation
19
19
------------
Original file line number Diff line number Diff line change 22
22
from tempfile import mkstemp
23
23
from zipfile import ZIP_DEFLATED , ZipFile
24
24
25
- from azure .storage .blobservice import BlobService
26
- from azure .storage .queueservice import QueueService
27
- from azure .storage .tableservice import TableService
25
+ from azure .storage .blob import BlobService
26
+ from azure .storage .queue import QueueService
27
+ from azure .storage .table import TableService
28
28
29
29
_PY3 = sys .version_info [0 ] == 3
30
30
Original file line number Diff line number Diff line change 26
26
license = 'Apache License 2.0' ,
27
27
packages = ['azure_storage_logging' ],
28
28
install_requires = [
29
- 'azure>=0.10 ' ,
29
+ 'azure-storage ' ,
30
30
],
31
31
classifiers = CLASSIFIERS ,
32
32
keywords = 'azure logging' ,
Original file line number Diff line number Diff line change 14
14
from threading import current_thread
15
15
from tempfile import mkdtemp
16
16
17
- from azure .storage import BlobService , QueueService , TableService
17
+ from azure .storage .blob import BlobService
18
+ from azure .storage .queue import QueueService
19
+ from azure .storage .table import TableService
18
20
19
21
20
22
# put your Azure Storage account name and key here
You can’t perform that action at this time.
0 commit comments