agentledger-s3 1.2.1__py3-none-any.whl
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.
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: agentledger-s3
|
|
3
|
+
Version: 1.2.1
|
|
4
|
+
Summary: S3-compatible BlobStore adapter package for AgentLedger
|
|
5
|
+
Project-URL: Homepage, https://github.com/yaogdu/AgentLedger
|
|
6
|
+
Project-URL: Repository, https://github.com/yaogdu/AgentLedger
|
|
7
|
+
Project-URL: Documentation, https://github.com/yaogdu/AgentLedger/tree/main/docs
|
|
8
|
+
Project-URL: Issues, https://github.com/yaogdu/AgentLedger/issues
|
|
9
|
+
Author: AgentLedger Contributors
|
|
10
|
+
License: Apache-2.0
|
|
11
|
+
Keywords: agents,blob-store,runtime,s3
|
|
12
|
+
Requires-Python: >=3.11
|
|
13
|
+
Requires-Dist: agentledger-runtime<2,>=1.2
|
|
14
|
+
Requires-Dist: boto3>=1.34
|
|
15
|
+
Description-Content-Type: text/markdown
|
|
16
|
+
|
|
17
|
+
# agentledger-s3
|
|
18
|
+
|
|
19
|
+
S3-compatible BlobStore adapter package for AgentLedger.
|
|
20
|
+
|
|
21
|
+
```bash
|
|
22
|
+
pip install agentledger-s3
|
|
23
|
+
pip install "agentledger-runtime[s3]"
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
```python
|
|
27
|
+
from agentledger_s3 import S3BlobStore, S3BlobStoreConfig
|
|
28
|
+
|
|
29
|
+
blobs = S3BlobStore(S3BlobStoreConfig.from_env())
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
This package supports AWS S3 and S3-compatible services such as MinIO through `endpoint_url`. It re-exports the stable adapter classes from `agentledger.blobstore_s3` in the `1.2.x` line.
|
|
33
|
+
|
|
34
|
+
Certification:
|
|
35
|
+
|
|
36
|
+
```bash
|
|
37
|
+
python3 -m agentledger adapter certify --kind s3 --adapter-version 1.2.1
|
|
38
|
+
```
|
|
39
|
+
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
agentledger_s3/__init__.py,sha256=LQlUHzOXdaogdoMC7Cte9ozoA33oU4o79PQjv34Xygc,218
|
|
2
|
+
agentledger_s3-1.2.1.dist-info/METADATA,sha256=j3S9A_iCQfJ__KaMvTxRf2o4resgnKep5P-c_PoIK0o,1190
|
|
3
|
+
agentledger_s3-1.2.1.dist-info/WHEEL,sha256=QccIxa26bgl1E6uMy58deGWi-0aeIkkangHcxk2kWfw,87
|
|
4
|
+
agentledger_s3-1.2.1.dist-info/RECORD,,
|