htmlgraph 0.26.22__py3-none-any.whl → 0.26.24__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.
htmlgraph/__init__.py CHANGED
@@ -19,6 +19,7 @@ from htmlgraph.atomic_ops import (
19
19
  from htmlgraph.builders import BaseBuilder, FeatureBuilder, SpikeBuilder
20
20
  from htmlgraph.collections import BaseCollection, FeatureCollection, SpikeCollection
21
21
  from htmlgraph.context_analytics import ContextAnalytics, ContextUsage
22
+ from htmlgraph.decorators import RetryError, retry, retry_async
22
23
  from htmlgraph.edge_index import EdgeIndex, EdgeRef
23
24
  from htmlgraph.exceptions import (
24
25
  ClaimConflictError,
@@ -95,7 +96,7 @@ from htmlgraph.types import (
95
96
  )
96
97
  from htmlgraph.work_type_utils import infer_work_type, infer_work_type_from_id
97
98
 
98
- __version__ = "0.26.22"
99
+ __version__ = "0.26.24"
99
100
  __all__ = [
100
101
  # Exceptions
101
102
  "HtmlGraphError",
@@ -103,6 +104,10 @@ __all__ = [
103
104
  "SessionNotFoundError",
104
105
  "ClaimConflictError",
105
106
  "ValidationError",
107
+ "RetryError",
108
+ # Decorators
109
+ "retry",
110
+ "retry_async",
106
111
  # Core models
107
112
  "Node",
108
113
  "Edge",