├── .github ├── dependabot.yaml ├── images │ ├── banner-dark.svg │ └── banner-light.svg └── workflows │ └── ci.yml ├── .gitignore ├── .pre-commit-config.yaml ├── LICENSE ├── README.md ├── examples ├── client_example.py ├── logger_example.py └── structlog_example.py ├── pyproject.toml ├── src └── axiom_py │ ├── __init__.py │ ├── annotations.py │ ├── client.py │ ├── datasets.py │ ├── logging.py │ ├── query │ ├── __init__.py │ ├── aggregation.py │ ├── filter.py │ ├── options.py │ ├── query.py │ └── result.py │ ├── structlog.py │ ├── tokens.py │ ├── users.py │ ├── util.py │ └── version.py ├── tests ├── __init__.py ├── helpers.py ├── test_annotations.py ├── test_client.py ├── test_datasets.py └── test_logger.py └── uv.lock /.github/dependabot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiomhq/axiom-py/HEAD/.github/dependabot.yaml -------------------------------------------------------------------------------- /.github/images/banner-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiomhq/axiom-py/HEAD/.github/images/banner-dark.svg -------------------------------------------------------------------------------- /.github/images/banner-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiomhq/axiom-py/HEAD/.github/images/banner-light.svg -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiomhq/axiom-py/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiomhq/axiom-py/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiomhq/axiom-py/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiomhq/axiom-py/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiomhq/axiom-py/HEAD/README.md -------------------------------------------------------------------------------- /examples/client_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiomhq/axiom-py/HEAD/examples/client_example.py -------------------------------------------------------------------------------- /examples/logger_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiomhq/axiom-py/HEAD/examples/logger_example.py -------------------------------------------------------------------------------- /examples/structlog_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiomhq/axiom-py/HEAD/examples/structlog_example.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiomhq/axiom-py/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/axiom_py/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiomhq/axiom-py/HEAD/src/axiom_py/__init__.py -------------------------------------------------------------------------------- /src/axiom_py/annotations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiomhq/axiom-py/HEAD/src/axiom_py/annotations.py -------------------------------------------------------------------------------- /src/axiom_py/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiomhq/axiom-py/HEAD/src/axiom_py/client.py -------------------------------------------------------------------------------- /src/axiom_py/datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiomhq/axiom-py/HEAD/src/axiom_py/datasets.py -------------------------------------------------------------------------------- /src/axiom_py/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiomhq/axiom-py/HEAD/src/axiom_py/logging.py -------------------------------------------------------------------------------- /src/axiom_py/query/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiomhq/axiom-py/HEAD/src/axiom_py/query/__init__.py -------------------------------------------------------------------------------- /src/axiom_py/query/aggregation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiomhq/axiom-py/HEAD/src/axiom_py/query/aggregation.py -------------------------------------------------------------------------------- /src/axiom_py/query/filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiomhq/axiom-py/HEAD/src/axiom_py/query/filter.py -------------------------------------------------------------------------------- /src/axiom_py/query/options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiomhq/axiom-py/HEAD/src/axiom_py/query/options.py -------------------------------------------------------------------------------- /src/axiom_py/query/query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiomhq/axiom-py/HEAD/src/axiom_py/query/query.py -------------------------------------------------------------------------------- /src/axiom_py/query/result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiomhq/axiom-py/HEAD/src/axiom_py/query/result.py -------------------------------------------------------------------------------- /src/axiom_py/structlog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiomhq/axiom-py/HEAD/src/axiom_py/structlog.py -------------------------------------------------------------------------------- /src/axiom_py/tokens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiomhq/axiom-py/HEAD/src/axiom_py/tokens.py -------------------------------------------------------------------------------- /src/axiom_py/users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiomhq/axiom-py/HEAD/src/axiom_py/users.py -------------------------------------------------------------------------------- /src/axiom_py/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiomhq/axiom-py/HEAD/src/axiom_py/util.py -------------------------------------------------------------------------------- /src/axiom_py/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiomhq/axiom-py/HEAD/src/axiom_py/version.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiomhq/axiom-py/HEAD/tests/helpers.py -------------------------------------------------------------------------------- /tests/test_annotations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiomhq/axiom-py/HEAD/tests/test_annotations.py -------------------------------------------------------------------------------- /tests/test_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiomhq/axiom-py/HEAD/tests/test_client.py -------------------------------------------------------------------------------- /tests/test_datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiomhq/axiom-py/HEAD/tests/test_datasets.py -------------------------------------------------------------------------------- /tests/test_logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiomhq/axiom-py/HEAD/tests/test_logger.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiomhq/axiom-py/HEAD/uv.lock --------------------------------------------------------------------------------