agentstr 0.1.7__py3-none-any.whl → 0.1.8__py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
- agentstr/__init__.py +30 -1
- agentstr/marketplace.py +1060 -92
- agentstr/nostr.py +260 -74
- {agentstr-0.1.7.dist-info → agentstr-0.1.8.dist-info}/LICENSE +1 -1
- agentstr-0.1.8.dist-info/METADATA +110 -0
- agentstr-0.1.8.dist-info/RECORD +8 -0
- agentstr-0.1.7.dist-info/METADATA +0 -111
- agentstr-0.1.7.dist-info/RECORD +0 -8
- {agentstr-0.1.7.dist-info → agentstr-0.1.8.dist-info}/WHEEL +0 -0
- {agentstr-0.1.7.dist-info → agentstr-0.1.8.dist-info}/top_level.txt +0 -0
agentstr/__init__.py
CHANGED
@@ -1 +1,30 @@
|
|
1
|
-
|
1
|
+
"""
|
2
|
+
AgentStr: Nostr extension for Phidata AI agents
|
3
|
+
"""
|
4
|
+
|
5
|
+
# Import main classes to make them available at package level
|
6
|
+
from .marketplace import (
|
7
|
+
Merchant,
|
8
|
+
MerchantProduct,
|
9
|
+
MerchantStall,
|
10
|
+
Profile,
|
11
|
+
ShippingCost,
|
12
|
+
ShippingMethod,
|
13
|
+
)
|
14
|
+
|
15
|
+
# Import version from pyproject.toml at runtime
|
16
|
+
try:
|
17
|
+
from importlib.metadata import version
|
18
|
+
|
19
|
+
__version__ = version("agentstr")
|
20
|
+
except Exception:
|
21
|
+
__version__ = "unknown"
|
22
|
+
|
23
|
+
__all__ = [
|
24
|
+
"Profile",
|
25
|
+
"Merchant",
|
26
|
+
"MerchantStall",
|
27
|
+
"MerchantProduct",
|
28
|
+
"ShippingMethod",
|
29
|
+
"ShippingCost",
|
30
|
+
]
|