Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 696 Bytes

File metadata and controls

32 lines (23 loc) · 696 Bytes

aether (Python)

Python client for the Aether REST API. Mirrors the TypeScript SDK at ../typescript so you get the same shape in either language.

Install

pip install aether-sdk

Use

from 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.

License

Apache-2.0 — see LICENSE.