Python client for the Aether REST API.
Mirrors the TypeScript SDK at ../typescript so you get
the same shape in either language.
pip install aether-sdkfrom aether import AetherClient
with AetherClient(api_key="ak_...") as aether:
result = aether.search(
query="Apple revenue concentration risk",
tickers=["AAPL"],
limit=5,
)
for hit in result.hits:
print(f"{hit.score:.3f} {hit.ticker} {hit.section_title}")Get an API key at https://aether.evidinvest.com/developer/keys.
Apache-2.0 — see LICENSE.