microsoft-agents-storage-blob 0.2.0__tar.gz → 0.3.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of microsoft-agents-storage-blob might be problematic. Click here for more details.
- {microsoft_agents_storage_blob-0.2.0 → microsoft_agents_storage_blob-0.3.0}/PKG-INFO +2 -2
- {microsoft_agents_storage_blob-0.2.0/microsoft/agents → microsoft_agents_storage_blob-0.3.0/microsoft_agents}/storage/blob/blob_storage.py +4 -4
- {microsoft_agents_storage_blob-0.2.0 → microsoft_agents_storage_blob-0.3.0}/microsoft_agents_storage_blob.egg-info/PKG-INFO +2 -2
- {microsoft_agents_storage_blob-0.2.0 → microsoft_agents_storage_blob-0.3.0}/microsoft_agents_storage_blob.egg-info/SOURCES.txt +3 -3
- microsoft_agents_storage_blob-0.3.0/microsoft_agents_storage_blob.egg-info/requires.txt +3 -0
- microsoft_agents_storage_blob-0.3.0/microsoft_agents_storage_blob.egg-info/top_level.txt +1 -0
- {microsoft_agents_storage_blob-0.2.0 → microsoft_agents_storage_blob-0.3.0}/tests/test_blob_storage.py +2 -2
- microsoft_agents_storage_blob-0.2.0/microsoft_agents_storage_blob.egg-info/requires.txt +0 -3
- microsoft_agents_storage_blob-0.2.0/microsoft_agents_storage_blob.egg-info/top_level.txt +0 -1
- {microsoft_agents_storage_blob-0.2.0/microsoft/agents → microsoft_agents_storage_blob-0.3.0/microsoft_agents}/storage/blob/__init__.py +0 -0
- {microsoft_agents_storage_blob-0.2.0/microsoft/agents → microsoft_agents_storage_blob-0.3.0/microsoft_agents}/storage/blob/blob_storage_config.py +0 -0
- {microsoft_agents_storage_blob-0.2.0 → microsoft_agents_storage_blob-0.3.0}/microsoft_agents_storage_blob.egg-info/dependency_links.txt +0 -0
- {microsoft_agents_storage_blob-0.2.0 → microsoft_agents_storage_blob-0.3.0}/pyproject.toml +0 -0
- {microsoft_agents_storage_blob-0.2.0 → microsoft_agents_storage_blob-0.3.0}/setup.cfg +0 -0
- {microsoft_agents_storage_blob-0.2.0 → microsoft_agents_storage_blob-0.3.0}/setup.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: microsoft-agents-storage-blob
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.3.0
|
|
4
4
|
Summary: A blob storage library for Microsoft Agents
|
|
5
5
|
Author: Microsoft Corporation
|
|
6
6
|
Project-URL: Homepage, https://github.com/microsoft/Agents
|
|
@@ -8,7 +8,7 @@ Classifier: Programming Language :: Python :: 3
|
|
|
8
8
|
Classifier: License :: OSI Approved :: MIT License
|
|
9
9
|
Classifier: Operating System :: OS Independent
|
|
10
10
|
Requires-Python: >=3.9
|
|
11
|
-
Requires-Dist: microsoft-agents-hosting-core==0.
|
|
11
|
+
Requires-Dist: microsoft-agents-hosting-core==0.3.0
|
|
12
12
|
Requires-Dist: azure-core
|
|
13
13
|
Requires-Dist: azure-storage-blob
|
|
14
14
|
Dynamic: requires-dist
|
|
@@ -7,10 +7,10 @@ from azure.storage.blob.aio import (
|
|
|
7
7
|
BlobServiceClient,
|
|
8
8
|
)
|
|
9
9
|
|
|
10
|
-
from
|
|
11
|
-
from
|
|
12
|
-
from
|
|
13
|
-
from
|
|
10
|
+
from microsoft_agents.hosting.core.storage import StoreItem
|
|
11
|
+
from microsoft_agents.hosting.core.storage.storage import AsyncStorageBase
|
|
12
|
+
from microsoft_agents.hosting.core.storage._type_aliases import JSON
|
|
13
|
+
from microsoft_agents.hosting.core.storage.error_handling import (
|
|
14
14
|
ignore_error,
|
|
15
15
|
is_status_code_error,
|
|
16
16
|
)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: microsoft-agents-storage-blob
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.3.0
|
|
4
4
|
Summary: A blob storage library for Microsoft Agents
|
|
5
5
|
Author: Microsoft Corporation
|
|
6
6
|
Project-URL: Homepage, https://github.com/microsoft/Agents
|
|
@@ -8,7 +8,7 @@ Classifier: Programming Language :: Python :: 3
|
|
|
8
8
|
Classifier: License :: OSI Approved :: MIT License
|
|
9
9
|
Classifier: Operating System :: OS Independent
|
|
10
10
|
Requires-Python: >=3.9
|
|
11
|
-
Requires-Dist: microsoft-agents-hosting-core==0.
|
|
11
|
+
Requires-Dist: microsoft-agents-hosting-core==0.3.0
|
|
12
12
|
Requires-Dist: azure-core
|
|
13
13
|
Requires-Dist: azure-storage-blob
|
|
14
14
|
Dynamic: requires-dist
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
pyproject.toml
|
|
2
2
|
setup.py
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
3
|
+
microsoft_agents/storage/blob/__init__.py
|
|
4
|
+
microsoft_agents/storage/blob/blob_storage.py
|
|
5
|
+
microsoft_agents/storage/blob/blob_storage_config.py
|
|
6
6
|
microsoft_agents_storage_blob.egg-info/PKG-INFO
|
|
7
7
|
microsoft_agents_storage_blob.egg-info/SOURCES.txt
|
|
8
8
|
microsoft_agents_storage_blob.egg-info/dependency_links.txt
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
microsoft_agents
|
|
@@ -6,11 +6,11 @@ from io import BytesIO
|
|
|
6
6
|
import pytest
|
|
7
7
|
import pytest_asyncio
|
|
8
8
|
|
|
9
|
-
from
|
|
9
|
+
from microsoft_agents.storage.blob import BlobStorage, BlobStorageConfig
|
|
10
10
|
from azure.storage.blob.aio import BlobServiceClient
|
|
11
11
|
from azure.core.exceptions import ResourceNotFoundError
|
|
12
12
|
|
|
13
|
-
from
|
|
13
|
+
from microsoft_agents.hosting.core.storage.storage_test_utils import (
|
|
14
14
|
CRUDStorageTests,
|
|
15
15
|
StorageBaseline,
|
|
16
16
|
MockStoreItem,
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
microsoft
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|