hail-sdk 0.0.1__tar.gz

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,51 @@
1
+ # ─── OS ────────────────────────────────
2
+ .DS_Store
3
+ Thumbs.db
4
+
5
+ # ─── Env ───────────────────────────────
6
+ .env
7
+ .env.local
8
+ .env.*.local
9
+ !.env.example
10
+
11
+ # ─── Editor ────────────────────────────
12
+ .idea/
13
+ .vscode/
14
+
15
+ # ─── Python ────────────────────────────
16
+ __pycache__/
17
+ *.py[cod]
18
+ *.so
19
+ .Python
20
+ build/
21
+ dist/
22
+ *.egg-info/
23
+ .pytest_cache/
24
+ .ruff_cache/
25
+ .mypy_cache/
26
+ .coverage
27
+ htmlcov/
28
+ .venv/
29
+ venv/
30
+ env/
31
+
32
+ # ─── Node ──────────────────────────────
33
+ node_modules/
34
+ npm-debug.log*
35
+ yarn-debug.log*
36
+ pnpm-debug.log*
37
+
38
+ # ─── Go ────────────────────────────────
39
+ bin/
40
+ *.exe
41
+ *.exe~
42
+ *.dll
43
+ *.dylib
44
+ *.test
45
+ *.out
46
+ coverage.*
47
+ profile.cov
48
+
49
+ # ─── Local data ────────────────────────
50
+ /data/
51
+ /tmp/
@@ -0,0 +1,39 @@
1
+ Metadata-Version: 2.4
2
+ Name: hail-sdk
3
+ Version: 0.0.1
4
+ Summary: Python SDK for Hail — universal communication platform for AI agents.
5
+ Project-URL: Homepage, https://hail.so
6
+ Project-URL: Repository, https://github.com/hail-hq/hail
7
+ Project-URL: Documentation, https://hail.so/docs
8
+ Project-URL: Issues, https://github.com/hail-hq/hail/issues
9
+ Author-email: Hail <hi@hail.so>
10
+ License: AGPL-3.0-or-later
11
+ Keywords: ai-agents,email,hail,mcp,phone,sms,voice
12
+ Classifier: Development Status :: 3 - Alpha
13
+ Classifier: License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)
14
+ Classifier: Programming Language :: Python :: 3
15
+ Classifier: Programming Language :: Python :: 3.11
16
+ Classifier: Programming Language :: Python :: 3.12
17
+ Classifier: Programming Language :: Python :: 3.13
18
+ Classifier: Topic :: Communications :: Telephony
19
+ Classifier: Typing :: Typed
20
+ Requires-Python: >=3.11
21
+ Requires-Dist: httpx>=0.27
22
+ Requires-Dist: pydantic>=2.9
23
+ Description-Content-Type: text/markdown
24
+
25
+ # hail-sdk
26
+
27
+ Python SDK for [Hail](https://hail.so) — universal communication platform for AI agents.
28
+
29
+ ```python
30
+ from hail import Client
31
+
32
+ hail = Client(api_key="sk-...")
33
+ ```
34
+
35
+ **Alpha.** The full client lands with Hail v0.1.0. Track progress at [github.com/hail-hq/hail](https://github.com/hail-hq/hail).
36
+
37
+ ## License
38
+
39
+ [AGPL-3.0-or-later](https://github.com/hail-hq/hail/blob/main/LICENSE).
@@ -0,0 +1,15 @@
1
+ # hail-sdk
2
+
3
+ Python SDK for [Hail](https://hail.so) — universal communication platform for AI agents.
4
+
5
+ ```python
6
+ from hail import Client
7
+
8
+ hail = Client(api_key="sk-...")
9
+ ```
10
+
11
+ **Alpha.** The full client lands with Hail v0.1.0. Track progress at [github.com/hail-hq/hail](https://github.com/hail-hq/hail).
12
+
13
+ ## License
14
+
15
+ [AGPL-3.0-or-later](https://github.com/hail-hq/hail/blob/main/LICENSE).
@@ -0,0 +1,6 @@
1
+ """Hail Python SDK."""
2
+
3
+ from hail.client import Client
4
+
5
+ __version__ = "0.0.1"
6
+ __all__ = ["Client"]
@@ -0,0 +1,9 @@
1
+ class Client:
2
+ """Hail API client (alpha placeholder — full client lands in v1)."""
3
+
4
+ def __init__(self, api_key: str, base_url: str = "https://api.hail.so") -> None:
5
+ self.api_key = api_key
6
+ self.base_url = base_url.rstrip("/")
7
+
8
+ def __repr__(self) -> str:
9
+ return f"<hail.Client base_url={self.base_url!r}>"
@@ -0,0 +1,36 @@
1
+ [project]
2
+ name = "hail-sdk"
3
+ version = "0.0.1"
4
+ description = "Python SDK for Hail — universal communication platform for AI agents."
5
+ readme = "README.md"
6
+ license = { text = "AGPL-3.0-or-later" }
7
+ requires-python = ">=3.11"
8
+ authors = [{ name = "Hail", email = "hi@hail.so" }]
9
+ keywords = ["hail", "voice", "phone", "sms", "email", "ai-agents", "mcp"]
10
+ classifiers = [
11
+ "Development Status :: 3 - Alpha",
12
+ "License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
13
+ "Programming Language :: Python :: 3",
14
+ "Programming Language :: Python :: 3.11",
15
+ "Programming Language :: Python :: 3.12",
16
+ "Programming Language :: Python :: 3.13",
17
+ "Topic :: Communications :: Telephony",
18
+ "Typing :: Typed",
19
+ ]
20
+ dependencies = [
21
+ "httpx>=0.27",
22
+ "pydantic>=2.9",
23
+ ]
24
+
25
+ [project.urls]
26
+ Homepage = "https://hail.so"
27
+ Repository = "https://github.com/hail-hq/hail"
28
+ Documentation = "https://hail.so/docs"
29
+ Issues = "https://github.com/hail-hq/hail/issues"
30
+
31
+ [build-system]
32
+ requires = ["hatchling"]
33
+ build-backend = "hatchling.build"
34
+
35
+ [tool.hatch.build.targets.wheel]
36
+ packages = ["hail"]