microsoft-agents-storage-blob 1.1.0.dev8__tar.gz → 1.2.0.dev0__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.
- {microsoft_agents_storage_blob-1.1.0.dev8/microsoft_agents_storage_blob.egg-info → microsoft_agents_storage_blob-1.2.0.dev0}/PKG-INFO +11 -2
- microsoft_agents_storage_blob-1.2.0.dev0/VERSION.txt +1 -0
- {microsoft_agents_storage_blob-1.1.0.dev8 → microsoft_agents_storage_blob-1.2.0.dev0}/microsoft_agents/storage/blob/blob_storage.py +3 -3
- {microsoft_agents_storage_blob-1.1.0.dev8 → microsoft_agents_storage_blob-1.2.0.dev0}/microsoft_agents/storage/blob/blob_storage_config.py +2 -4
- {microsoft_agents_storage_blob-1.1.0.dev8 → microsoft_agents_storage_blob-1.2.0.dev0/microsoft_agents_storage_blob.egg-info}/PKG-INFO +11 -2
- {microsoft_agents_storage_blob-1.1.0.dev8 → microsoft_agents_storage_blob-1.2.0.dev0}/microsoft_agents_storage_blob.egg-info/requires.txt +1 -1
- {microsoft_agents_storage_blob-1.1.0.dev8 → microsoft_agents_storage_blob-1.2.0.dev0}/readme.md +9 -0
- microsoft_agents_storage_blob-1.1.0.dev8/VERSION.txt +0 -1
- {microsoft_agents_storage_blob-1.1.0.dev8 → microsoft_agents_storage_blob-1.2.0.dev0}/LICENSE +0 -0
- {microsoft_agents_storage_blob-1.1.0.dev8 → microsoft_agents_storage_blob-1.2.0.dev0}/MANIFEST.in +0 -0
- {microsoft_agents_storage_blob-1.1.0.dev8 → microsoft_agents_storage_blob-1.2.0.dev0}/microsoft_agents/storage/blob/__init__.py +0 -0
- {microsoft_agents_storage_blob-1.1.0.dev8 → microsoft_agents_storage_blob-1.2.0.dev0}/microsoft_agents/storage/blob/errors/__init__.py +0 -0
- {microsoft_agents_storage_blob-1.1.0.dev8 → microsoft_agents_storage_blob-1.2.0.dev0}/microsoft_agents/storage/blob/errors/error_resources.py +0 -0
- {microsoft_agents_storage_blob-1.1.0.dev8 → microsoft_agents_storage_blob-1.2.0.dev0}/microsoft_agents_storage_blob.egg-info/SOURCES.txt +0 -0
- {microsoft_agents_storage_blob-1.1.0.dev8 → microsoft_agents_storage_blob-1.2.0.dev0}/microsoft_agents_storage_blob.egg-info/dependency_links.txt +0 -0
- {microsoft_agents_storage_blob-1.1.0.dev8 → microsoft_agents_storage_blob-1.2.0.dev0}/microsoft_agents_storage_blob.egg-info/top_level.txt +0 -0
- {microsoft_agents_storage_blob-1.1.0.dev8 → microsoft_agents_storage_blob-1.2.0.dev0}/pyproject.toml +0 -0
- {microsoft_agents_storage_blob-1.1.0.dev8 → microsoft_agents_storage_blob-1.2.0.dev0}/setup.cfg +0 -0
- {microsoft_agents_storage_blob-1.1.0.dev8 → microsoft_agents_storage_blob-1.2.0.dev0}/setup.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: microsoft-agents-storage-blob
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.2.0.dev0
|
|
4
4
|
Summary: A blob storage library for Microsoft Agents
|
|
5
5
|
Author: Microsoft Corporation
|
|
6
6
|
License-Expression: MIT
|
|
@@ -15,7 +15,7 @@ Classifier: Operating System :: OS Independent
|
|
|
15
15
|
Requires-Python: >=3.10
|
|
16
16
|
Description-Content-Type: text/markdown
|
|
17
17
|
License-File: LICENSE
|
|
18
|
-
Requires-Dist: microsoft-agents-hosting-core==1.
|
|
18
|
+
Requires-Dist: microsoft-agents-hosting-core==1.2.0.dev0
|
|
19
19
|
Requires-Dist: azure-core
|
|
20
20
|
Requires-Dist: azure-storage-blob
|
|
21
21
|
Requires-Dist: azure-identity
|
|
@@ -40,6 +40,15 @@ This library is part of the **Microsoft 365 Agents SDK for Python** - a comprehe
|
|
|
40
40
|
<th style="width:20%">Date</th>
|
|
41
41
|
<th style="width:60%">Release Notes</th>
|
|
42
42
|
</tr>
|
|
43
|
+
<tr>
|
|
44
|
+
<td>1.1.0</td>
|
|
45
|
+
<td>2026-06-19</td>
|
|
46
|
+
<td>
|
|
47
|
+
<a href="https://github.com/microsoft/Agents-for-python/blob/main/changelog.md#microsoft-365-agents-sdk-for-python---release-notes-v110">
|
|
48
|
+
1.1.0 Release Notes
|
|
49
|
+
</a>
|
|
50
|
+
</td>
|
|
51
|
+
</tr>
|
|
43
52
|
<tr>
|
|
44
53
|
<td>1.0.0</td>
|
|
45
54
|
<td>2026-05-22</td>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
1.2.0.dev0
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import json
|
|
2
|
-
from typing import TypeVar
|
|
2
|
+
from typing import TypeVar
|
|
3
3
|
from io import BytesIO
|
|
4
4
|
|
|
5
5
|
from azure.storage.blob.aio import (
|
|
@@ -63,8 +63,8 @@ class BlobStorage(AsyncStorageBase):
|
|
|
63
63
|
self._initialized = True
|
|
64
64
|
|
|
65
65
|
async def _read_item(
|
|
66
|
-
self, key: str, *, target_cls: StoreItemT = None, **kwargs
|
|
67
|
-
) -> tuple[
|
|
66
|
+
self, key: str, *, target_cls: StoreItemT | None = None, **kwargs
|
|
67
|
+
) -> tuple[str | None, StoreItemT | None]:
|
|
68
68
|
item = await ignore_error(
|
|
69
69
|
self._container_client.download_blob(blob=key, timeout=5),
|
|
70
70
|
is_status_code_error(404),
|
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
from typing import Union
|
|
2
|
-
|
|
3
1
|
from azure.core.credentials_async import AsyncTokenCredential
|
|
4
2
|
|
|
5
3
|
|
|
@@ -11,7 +9,7 @@ class BlobStorageConfig:
|
|
|
11
9
|
container_name: str,
|
|
12
10
|
connection_string: str = "",
|
|
13
11
|
url: str = "",
|
|
14
|
-
credential:
|
|
12
|
+
credential: AsyncTokenCredential | None = None,
|
|
15
13
|
):
|
|
16
14
|
"""Configuration settings for BlobStorage.
|
|
17
15
|
|
|
@@ -25,4 +23,4 @@ class BlobStorageConfig:
|
|
|
25
23
|
self.container_name: str = container_name
|
|
26
24
|
self.connection_string: str = connection_string
|
|
27
25
|
self.url: str = url
|
|
28
|
-
self.credential:
|
|
26
|
+
self.credential: AsyncTokenCredential | None = credential
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: microsoft-agents-storage-blob
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.2.0.dev0
|
|
4
4
|
Summary: A blob storage library for Microsoft Agents
|
|
5
5
|
Author: Microsoft Corporation
|
|
6
6
|
License-Expression: MIT
|
|
@@ -15,7 +15,7 @@ Classifier: Operating System :: OS Independent
|
|
|
15
15
|
Requires-Python: >=3.10
|
|
16
16
|
Description-Content-Type: text/markdown
|
|
17
17
|
License-File: LICENSE
|
|
18
|
-
Requires-Dist: microsoft-agents-hosting-core==1.
|
|
18
|
+
Requires-Dist: microsoft-agents-hosting-core==1.2.0.dev0
|
|
19
19
|
Requires-Dist: azure-core
|
|
20
20
|
Requires-Dist: azure-storage-blob
|
|
21
21
|
Requires-Dist: azure-identity
|
|
@@ -40,6 +40,15 @@ This library is part of the **Microsoft 365 Agents SDK for Python** - a comprehe
|
|
|
40
40
|
<th style="width:20%">Date</th>
|
|
41
41
|
<th style="width:60%">Release Notes</th>
|
|
42
42
|
</tr>
|
|
43
|
+
<tr>
|
|
44
|
+
<td>1.1.0</td>
|
|
45
|
+
<td>2026-06-19</td>
|
|
46
|
+
<td>
|
|
47
|
+
<a href="https://github.com/microsoft/Agents-for-python/blob/main/changelog.md#microsoft-365-agents-sdk-for-python---release-notes-v110">
|
|
48
|
+
1.1.0 Release Notes
|
|
49
|
+
</a>
|
|
50
|
+
</td>
|
|
51
|
+
</tr>
|
|
43
52
|
<tr>
|
|
44
53
|
<td>1.0.0</td>
|
|
45
54
|
<td>2026-05-22</td>
|
{microsoft_agents_storage_blob-1.1.0.dev8 → microsoft_agents_storage_blob-1.2.0.dev0}/readme.md
RENAMED
|
@@ -16,6 +16,15 @@ This library is part of the **Microsoft 365 Agents SDK for Python** - a comprehe
|
|
|
16
16
|
<th style="width:20%">Date</th>
|
|
17
17
|
<th style="width:60%">Release Notes</th>
|
|
18
18
|
</tr>
|
|
19
|
+
<tr>
|
|
20
|
+
<td>1.1.0</td>
|
|
21
|
+
<td>2026-06-19</td>
|
|
22
|
+
<td>
|
|
23
|
+
<a href="https://github.com/microsoft/Agents-for-python/blob/main/changelog.md#microsoft-365-agents-sdk-for-python---release-notes-v110">
|
|
24
|
+
1.1.0 Release Notes
|
|
25
|
+
</a>
|
|
26
|
+
</td>
|
|
27
|
+
</tr>
|
|
19
28
|
<tr>
|
|
20
29
|
<td>1.0.0</td>
|
|
21
30
|
<td>2026-05-22</td>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
1.1.0.dev8
|
{microsoft_agents_storage_blob-1.1.0.dev8 → microsoft_agents_storage_blob-1.2.0.dev0}/LICENSE
RENAMED
|
File without changes
|
{microsoft_agents_storage_blob-1.1.0.dev8 → microsoft_agents_storage_blob-1.2.0.dev0}/MANIFEST.in
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{microsoft_agents_storage_blob-1.1.0.dev8 → microsoft_agents_storage_blob-1.2.0.dev0}/pyproject.toml
RENAMED
|
File without changes
|
{microsoft_agents_storage_blob-1.1.0.dev8 → microsoft_agents_storage_blob-1.2.0.dev0}/setup.cfg
RENAMED
|
File without changes
|
{microsoft_agents_storage_blob-1.1.0.dev8 → microsoft_agents_storage_blob-1.2.0.dev0}/setup.py
RENAMED
|
File without changes
|