opencaselaw-cli 0.2.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,6 @@
1
+ """Dependency-free public research API client."""
2
+
3
+ from ._version import __version__
4
+ from .client import APIError, Client
5
+
6
+ __all__ = ["APIError", "Client", "__version__"]
@@ -0,0 +1,3 @@
1
+ from .cli import main
2
+
3
+ raise SystemExit(main())
@@ -0,0 +1,3 @@
1
+ """Single source of the client version (read by the package, the CLI and the User-Agent)."""
2
+
3
+ __version__ = "0.2.0"