agentledger-mysql 1.2.2__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,11 @@
|
|
|
1
|
+
from agentledger.storage_mysql import MYSQL_SCHEMA_SQL, MySQLDependencyMissing, MySQLStore, MySQLStoreConfig
|
|
2
|
+
|
|
3
|
+
__version__ = "1.2.2"
|
|
4
|
+
|
|
5
|
+
__all__ = [
|
|
6
|
+
"MYSQL_SCHEMA_SQL",
|
|
7
|
+
"MySQLDependencyMissing",
|
|
8
|
+
"MySQLStore",
|
|
9
|
+
"MySQLStoreConfig",
|
|
10
|
+
"__version__",
|
|
11
|
+
]
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: agentledger-mysql
|
|
3
|
+
Version: 1.2.2
|
|
4
|
+
Summary: MySQL StateStore 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,mysql,runtime,state-store
|
|
12
|
+
Requires-Python: >=3.11
|
|
13
|
+
Requires-Dist: agentledger-runtime<2,>=1.2
|
|
14
|
+
Requires-Dist: pymysql>=1.1
|
|
15
|
+
Description-Content-Type: text/markdown
|
|
16
|
+
|
|
17
|
+
# agentledger-mysql
|
|
18
|
+
|
|
19
|
+
MySQL StateStore adapter package for AgentLedger.
|
|
20
|
+
|
|
21
|
+
```bash
|
|
22
|
+
pip install agentledger-mysql
|
|
23
|
+
pip install "agentledger-runtime[mysql]"
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
```python
|
|
27
|
+
from agentledger_mysql import MySQLStore, MySQLStoreConfig
|
|
28
|
+
|
|
29
|
+
store = MySQLStore(MySQLStoreConfig.from_env())
|
|
30
|
+
store.init()
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
This package keeps the runtime core dependency-light while making MySQL an explicit opt-in. It re-exports the adapter classes from `agentledger.storage_mysql` in the `1.2.x` line.
|
|
34
|
+
|
|
35
|
+
Certification:
|
|
36
|
+
|
|
37
|
+
```bash
|
|
38
|
+
python3 -m agentledger adapter certify --kind mysql --adapter-version 1.2.2
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
Production hardening still requires real MySQL service validation, concurrency/load checks, backup/restore drills, and deployment-specific permission review.
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
agentledger_mysql/__init__.py,sha256=4yJulIlWtsb2eIltTJ9rBJfnIlL0o8QUmXLAfsF5cCw,262
|
|
2
|
+
agentledger_mysql-1.2.2.dist-info/METADATA,sha256=9mOOhjfZu8UWjC5nYxERN8wYR0czDDU291WQWAQDhag,1358
|
|
3
|
+
agentledger_mysql-1.2.2.dist-info/WHEEL,sha256=QccIxa26bgl1E6uMy58deGWi-0aeIkkangHcxk2kWfw,87
|
|
4
|
+
agentledger_mysql-1.2.2.dist-info/RECORD,,
|