ai-code-sessions 0.1.0__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
+ """Convert Codex CLI and Claude Code session logs to HTML transcripts."""
2
+
3
+ from . import core as _core
4
+ from .cli import cli
5
+
6
+ # Re-export core API (including underscore-prefixed helpers used by tests).
7
+ globals().update({k: v for k, v in _core.__dict__.items() if not k.startswith("__")})
8
+
9
+
10
+ def main():
11
+ cli()