<p align="center">
<a href="https://arize.com/ax">
<img src="https://storage.googleapis.com/arize-assets/arize-logo-white.jpg" width="600" />
</a>
<a target="_blank" href="https://pypi.org/project/arize/">
<img src="https://img.shields.io/pypi/v/arize?color=blue">
</a>
<a target="_blank" href="https://pypi.org/project/arize/">
<img src="https://img.shields.io/pypi/pyversions/arize">
</a>
<a target="_blank" href="https://arize-ai.slack.com/join/shared_invite/zt-2w57bhem8-hq24MB6u7yE_ZF_ilOYSBw#/shared-invite/email">
<img src="https://img.shields.io/badge/slack-@arize-blue.svg?logo=slack">
</a>
</p>
---
## Overview
A helper package to interact with Arize AI APIs.
Arize is an AI engineering platform. It helps engineers develop, evaluate, and observe AI applications and agents.
Arize has both Enterprise and OSS products to support this goal:
- [Arize AX](https://arize.com/) — an enterprise AI engineering platform from development to production, with an embedded AI Copilot
- [Phoenix](https://github.com/Arize-ai/phoenix) — a lightweight, open-source project for tracing, prompt engineering, and evaluation
- [OpenInference](https://github.com/Arize-ai/openinference) — an open-source instrumentation package to trace LLM applications across models and frameworks
We log over 1 trillion inferences and spans, 10 million evaluation runs, and 2 million OSS downloads every month.
## Key Features
- [**_Tracing_**](https://docs.arize.com/arize/observe/tracing) - Trace your LLM application's runtime using OpenTelemetry-based instrumentation.
- [**_Evaluation_**](https://docs.arize.com/arize/evaluate/online-evals) - Leverage LLMs to benchmark your application's performance using response and retrieval evals.
- [**_Datasets_**](https://docs.arize.com/arize/develop/datasets) - Create versioned datasets of examples for experimentation, evaluation, and fine-tuning.
- [**_Experiments_**](https://docs.arize.com/arize/develop/datasets-and-experiments) - Track and evaluate changes to prompts, LLMs, and retrieval.
- [**_Playground_**](https://docs.arize.com/arize/develop/prompt-playground)- Optimize prompts, compare models, adjust parameters, and replay traced LLM calls.
- [**_Prompt Management_**](https://docs.arize.com/arize/develop/prompt-hub)- Manage and test prompt changes systematically using version control, tagging, and experimentation.
## Installation
Install Arize via `pip` or `conda`:
```bash
pip install arize
```
Install the `arize-otel` package for auto-instrumentation of your LLM library:
```bash
pip install arize-otel
```
## Usage
### Instrumentation
See https://pypi.org/project/arize-otel/
```python
from arize.otel import register
from openinference.instrumentation.openai import OpenAIInstrumentor
# Setup OpenTelemetry via our convenience function
tracer_provider = register(
space_id=SPACE_ID,
api_key=API_KEY,
project_name="agents-cookbook",
)
# Start instrumentation
OpenAIInstrumentor().instrument(tracer_provider=tracer_provider)
```
### Logging Spans, Evaluations, and Annotations
Use `arize.pandas.logger` to log spans, evaluations, and annotations in bulk. See https://arize-client-python.readthedocs.io/en/latest/llm-api/logger.html
```python
from arize.pandas.logger import Client
arize_client = Client(
space_key=os.environ["ARIZE_SPACE_KEY"],
api_key=os.environ["ARIZE_API_KEY"],
)
arize_client.log_spans(
dataframe=spans_df,
project_name="your-llm-project",
)
arize_client.log_evaluations_sync(
dataframe=evals_df,
project_name="your-llm-project",
)
arize_client.log_annotations(
dataframe=annotations_df,
project_name="your-llm-project",
)
```
### Datasets & Experiments
Use `arize.experimental.datasets` to create datasets and run experiments. See https://arize-client-python.readthedocs.io/en/latest/llm-api/datasets.html
```python
from arize.experimental.datasets import ArizeDatasetsClient
datasets_client = ArizeDatasetsClient(api_key=os.environ["ARIZE_API_KEY"])
dataset_id = datasets_client.create_dataset(
space_id=os.environ["ARIZE_SPACE_KEY"],
dataset_name="llm-span-dataset",
data=spans_df,
)
```
## Tracing Integrations
Arize is built on top of OpenTelemetry and is vendor, language, and framework agnostic. For details about tracing integrations and example applications, see the [OpenInference](https://github.com/Arize-ai/openinference) project.
**Python Integrations**
| Integration | Package | Version Badge |
|------------------|-----------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------|
| [OpenAI](https://docs.arize.com/phoenix/tracing/integrations-tracing/openai) | `openinference-instrumentation-openai` | [](https://pypi.python.org/pypi/openinference-instrumentation-openai) |
| [OpenAI Agents](https://docs.arize.com/phoenix/tracing/integrations-tracing/openai-agents-sdk) | `openinference-instrumentation-openai-agents` | [](https://pypi.python.org/pypi/openinference-instrumentation-openai-agents) |
| [LlamaIndex](https://docs.arize.com/phoenix/tracing/integrations-tracing/llamaindex) | `openinference-instrumentation-llama-index` | [](https://pypi.python.org/pypi/openinference-instrumentation-llama-index) |
| [DSPy](https://docs.arize.com/phoenix/tracing/integrations-tracing/dspy) | `openinference-instrumentation-dspy` | [](https://pypi.python.org/pypi/openinference-instrumentation-dspy) |
| [AWS Bedrock](https://docs.arize.com/phoenix/tracing/integrations-tracing/bedrock) | `openinference-instrumentation-bedrock` | [](https://pypi.python.org/pypi/openinference-instrumentation-bedrock) |
| [LangChain](https://docs.arize.com/phoenix/tracing/integrations-tracing/langchain) | `openinference-instrumentation-langchain` | [](https://pypi.python.org/pypi/openinference-instrumentation-langchain) |
| [MistralAI](https://docs.arize.com/phoenix/tracing/integrations-tracing/mistralai) | `openinference-instrumentation-mistralai` | [](https://pypi.python.org/pypi/openinference-instrumentation-mistralai) |
| [Google GenAI](https://docs.arize.com/phoenix/tracing/integrations-tracing/google-gen-ai) | `openinference-instrumentation-google-genai` | [](https://pypi.python.org/pypi/openinference-instrumentation-google-genai) |
| [Guardrails](https://docs.arize.com/phoenix/tracing/integrations-tracing/guardrails) | `openinference-instrumentation-guardrails` | [](https://pypi.python.org/pypi/openinference-instrumentation-guardrails) |
| [VertexAI](https://docs.arize.com/phoenix/tracing/integrations-tracing/vertexai) | `openinference-instrumentation-vertexai` | [](https://pypi.python.org/pypi/openinference-instrumentation-vertexai) |
| [CrewAI](https://docs.arize.com/phoenix/tracing/integrations-tracing/crewai) | `openinference-instrumentation-crewai` | [](https://pypi.python.org/pypi/openinference-instrumentation-crewai) |
| [Haystack](https://docs.arize.com/phoenix/tracing/integrations-tracing/haystack) | `openinference-instrumentation-haystack` | [](https://pypi.python.org/pypi/openinference-instrumentation-haystack) |
| [LiteLLM](https://docs.arize.com/phoenix/tracing/integrations-tracing/litellm) | `openinference-instrumentation-litellm` | [](https://pypi.python.org/pypi/openinference-instrumentation-litellm) |
| [Groq](https://docs.arize.com/phoenix/tracing/integrations-tracing/groq) | `openinference-instrumentation-groq` | [](https://pypi.python.org/pypi/openinference-instrumentation-groq) |
| [Instructor](https://docs.arize.com/phoenix/tracing/integrations-tracing/instructor) | `openinference-instrumentation-instructor` | [](https://pypi.python.org/pypi/openinference-instrumentation-instructor) |
| [Anthropic](https://docs.arize.com/phoenix/tracing/integrations-tracing/anthropic) | `openinference-instrumentation-anthropic` | [](https://pypi.python.org/pypi/openinference-instrumentation-anthropic) |
| [Smolagents](https://huggingface.co/docs/smolagents/en/tutorials/inspect_runs) | `openinference-instrumentation-smolagents` | [](https://pypi.python.org/pypi/openinference-instrumentation-smolagents) |
### JavaScript Integrations
| Integration | Package | Version Badge |
| ------------------------------------------------------------------------------------------ | -------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| [OpenAI](https://docs.arize.com/phoenix/tracing/integrations-tracing/openai-node-sdk) | `@arizeai/openinference-instrumentation-openai` | [](https://www.npmjs.com/package/@arizeai/openinference-instrumentation-openai) |
| [LangChain.js](https://docs.arize.com/phoenix/tracing/integrations-tracing/langchain.js) | `@arizeai/openinference-instrumentation-langchain` | [](https://www.npmjs.com/package/@arizeai/openinference-instrumentation-langchain) |
| [Vercel AI SDK](https://docs.arize.com/phoenix/tracing/integrations-tracing/vercel-ai-sdk) | `@arizeai/openinference-vercel` | [](https://www.npmjs.com/package/@arizeai/openinference-vercel) |
| [BeeAI](https://docs.arize.com/phoenix/tracing/integrations-tracing/beeai) | `@arizeai/openinference-instrumentation-beeai` | [](https://www.npmjs.com/package/@arizeai/openinference-instrumentation-beeai) |
## Community
Join our community to connect with thousands of AI builders.
- 🌍 Join our [Slack community](https://arize-ai.slack.com/join/shared_invite/zt-11t1vbu4x-xkBIHmOREQnYnYDH1GDfCg?__hstc=259489365.a667dfafcfa0169c8aee4178d115dc81.1733501603539.1733501603539.1733501603539.1&__hssc=259489365.1.1733501603539&__hsfp=3822854628&submissionGuid=381a0676-8f38-437b-96f2-fc10875658df#/shared-invite/email).
- 📚 Read our [documentation](https://docs.arize.com/arize).
- 💡 Ask questions and provide feedback in the _#arize-support_ channel.
- 𝕏 Follow us on [𝕏](https://twitter.com/ArizeAI).
- 🧑🏫 Deep dive into everything [Agents](http://arize.com/ai-agents/) and [LLM Evaluations](https://arize.com/llm-evaluation) on Arize's Learning Hubs.
Copyright 2025 Arize AI, Inc. All Rights Reserved.
Raw data
{
"_id": null,
"home_page": null,
"name": "arize",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.6",
"maintainer_email": "Arize AI <support@arize.com>",
"keywords": "Arize, Evaluations, Explainability, LLM, Monitoring, Observability, Tracing",
"author": null,
"author_email": "Arize AI <support@arize.com>",
"download_url": "https://files.pythonhosted.org/packages/45/7d/e9a438e1ffb5cb567dc1b37b60b322ad8ac84935be9fd7164d10a0c6ce5b/arize-7.47.0.tar.gz",
"platform": null,
"description": "<p align=\"center\">\n <a href=\"https://arize.com/ax\">\n <img src=\"https://storage.googleapis.com/arize-assets/arize-logo-white.jpg\" width=\"600\" />\n </a>\n <a target=\"_blank\" href=\"https://pypi.org/project/arize/\">\n <img src=\"https://img.shields.io/pypi/v/arize?color=blue\">\n </a>\n <a target=\"_blank\" href=\"https://pypi.org/project/arize/\">\n <img src=\"https://img.shields.io/pypi/pyversions/arize\">\n </a>\n <a target=\"_blank\" href=\"https://arize-ai.slack.com/join/shared_invite/zt-2w57bhem8-hq24MB6u7yE_ZF_ilOYSBw#/shared-invite/email\">\n <img src=\"https://img.shields.io/badge/slack-@arize-blue.svg?logo=slack\">\n </a>\n</p>\n\n---\n\n## Overview\n\nA helper package to interact with Arize AI APIs.\n\nArize is an AI engineering platform. It helps engineers develop, evaluate, and observe AI applications and agents. \n\nArize has both Enterprise and OSS products to support this goal: \n- [Arize AX](https://arize.com/) \u2014 an enterprise AI engineering platform from development to production, with an embedded AI Copilot\n- [Phoenix](https://github.com/Arize-ai/phoenix) \u2014 a lightweight, open-source project for tracing, prompt engineering, and evaluation\n- [OpenInference](https://github.com/Arize-ai/openinference) \u2014 an open-source instrumentation package to trace LLM applications across models and frameworks\n\nWe log over 1 trillion inferences and spans, 10 million evaluation runs, and 2 million OSS downloads every month. \n\n## Key Features\n- [**_Tracing_**](https://docs.arize.com/arize/observe/tracing) - Trace your LLM application's runtime using OpenTelemetry-based instrumentation.\n- [**_Evaluation_**](https://docs.arize.com/arize/evaluate/online-evals) - Leverage LLMs to benchmark your application's performance using response and retrieval evals.\n- [**_Datasets_**](https://docs.arize.com/arize/develop/datasets) - Create versioned datasets of examples for experimentation, evaluation, and fine-tuning.\n- [**_Experiments_**](https://docs.arize.com/arize/develop/datasets-and-experiments) - Track and evaluate changes to prompts, LLMs, and retrieval.\n- [**_Playground_**](https://docs.arize.com/arize/develop/prompt-playground)- Optimize prompts, compare models, adjust parameters, and replay traced LLM calls.\n- [**_Prompt Management_**](https://docs.arize.com/arize/develop/prompt-hub)- Manage and test prompt changes systematically using version control, tagging, and experimentation.\n\n## Installation\n\nInstall Arize via `pip` or `conda`:\n\n```bash\npip install arize\n```\n\nInstall the `arize-otel` package for auto-instrumentation of your LLM library:\n\n```bash\npip install arize-otel\n```\n\n## Usage\n \n### Instrumentation\nSee https://pypi.org/project/arize-otel/\n\n```python\nfrom arize.otel import register\nfrom openinference.instrumentation.openai import OpenAIInstrumentor\n\n# Setup OpenTelemetry via our convenience function\ntracer_provider = register(\n space_id=SPACE_ID,\n api_key=API_KEY,\n project_name=\"agents-cookbook\",\n)\n\n# Start instrumentation\nOpenAIInstrumentor().instrument(tracer_provider=tracer_provider)\n```\n\n\n### Logging Spans, Evaluations, and Annotations\n\nUse `arize.pandas.logger` to log spans, evaluations, and annotations in bulk. See https://arize-client-python.readthedocs.io/en/latest/llm-api/logger.html\n\n```python\nfrom arize.pandas.logger import Client\n\narize_client = Client(\n space_key=os.environ[\"ARIZE_SPACE_KEY\"],\n api_key=os.environ[\"ARIZE_API_KEY\"],\n)\n\narize_client.log_spans(\n dataframe=spans_df,\n project_name=\"your-llm-project\",\n)\n\narize_client.log_evaluations_sync(\n dataframe=evals_df,\n project_name=\"your-llm-project\",\n)\n\narize_client.log_annotations(\n dataframe=annotations_df,\n project_name=\"your-llm-project\",\n)\n```\n\n### Datasets & Experiments\n\nUse `arize.experimental.datasets` to create datasets and run experiments. See https://arize-client-python.readthedocs.io/en/latest/llm-api/datasets.html\n\n```python\nfrom arize.experimental.datasets import ArizeDatasetsClient\n\ndatasets_client = ArizeDatasetsClient(api_key=os.environ[\"ARIZE_API_KEY\"])\n\ndataset_id = datasets_client.create_dataset(\n space_id=os.environ[\"ARIZE_SPACE_KEY\"],\n dataset_name=\"llm-span-dataset\",\n data=spans_df,\n)\n```\n\n\n## Tracing Integrations\n\nArize is built on top of OpenTelemetry and is vendor, language, and framework agnostic. For details about tracing integrations and example applications, see the [OpenInference](https://github.com/Arize-ai/openinference) project.\n\n**Python Integrations**\n| Integration | Package | Version Badge |\n|------------------|-----------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------|\n| [OpenAI](https://docs.arize.com/phoenix/tracing/integrations-tracing/openai) | `openinference-instrumentation-openai` | [](https://pypi.python.org/pypi/openinference-instrumentation-openai) |\n| [OpenAI Agents](https://docs.arize.com/phoenix/tracing/integrations-tracing/openai-agents-sdk) | `openinference-instrumentation-openai-agents` | [](https://pypi.python.org/pypi/openinference-instrumentation-openai-agents) |\n| [LlamaIndex](https://docs.arize.com/phoenix/tracing/integrations-tracing/llamaindex) | `openinference-instrumentation-llama-index` | [](https://pypi.python.org/pypi/openinference-instrumentation-llama-index) |\n| [DSPy](https://docs.arize.com/phoenix/tracing/integrations-tracing/dspy) | `openinference-instrumentation-dspy` | [](https://pypi.python.org/pypi/openinference-instrumentation-dspy) |\n| [AWS Bedrock](https://docs.arize.com/phoenix/tracing/integrations-tracing/bedrock) | `openinference-instrumentation-bedrock` | [](https://pypi.python.org/pypi/openinference-instrumentation-bedrock) |\n| [LangChain](https://docs.arize.com/phoenix/tracing/integrations-tracing/langchain) | `openinference-instrumentation-langchain` | [](https://pypi.python.org/pypi/openinference-instrumentation-langchain) |\n| [MistralAI](https://docs.arize.com/phoenix/tracing/integrations-tracing/mistralai) | `openinference-instrumentation-mistralai` | [](https://pypi.python.org/pypi/openinference-instrumentation-mistralai) |\n| [Google GenAI](https://docs.arize.com/phoenix/tracing/integrations-tracing/google-gen-ai) | `openinference-instrumentation-google-genai` | [](https://pypi.python.org/pypi/openinference-instrumentation-google-genai) |\n| [Guardrails](https://docs.arize.com/phoenix/tracing/integrations-tracing/guardrails) | `openinference-instrumentation-guardrails` | [](https://pypi.python.org/pypi/openinference-instrumentation-guardrails) |\n| [VertexAI](https://docs.arize.com/phoenix/tracing/integrations-tracing/vertexai) | `openinference-instrumentation-vertexai` | [](https://pypi.python.org/pypi/openinference-instrumentation-vertexai) |\n| [CrewAI](https://docs.arize.com/phoenix/tracing/integrations-tracing/crewai) | `openinference-instrumentation-crewai` | [](https://pypi.python.org/pypi/openinference-instrumentation-crewai) |\n| [Haystack](https://docs.arize.com/phoenix/tracing/integrations-tracing/haystack) | `openinference-instrumentation-haystack` | [](https://pypi.python.org/pypi/openinference-instrumentation-haystack) |\n| [LiteLLM](https://docs.arize.com/phoenix/tracing/integrations-tracing/litellm) | `openinference-instrumentation-litellm` | [](https://pypi.python.org/pypi/openinference-instrumentation-litellm) |\n| [Groq](https://docs.arize.com/phoenix/tracing/integrations-tracing/groq) | `openinference-instrumentation-groq` | [](https://pypi.python.org/pypi/openinference-instrumentation-groq) |\n| [Instructor](https://docs.arize.com/phoenix/tracing/integrations-tracing/instructor) | `openinference-instrumentation-instructor` | [](https://pypi.python.org/pypi/openinference-instrumentation-instructor) |\n| [Anthropic](https://docs.arize.com/phoenix/tracing/integrations-tracing/anthropic) | `openinference-instrumentation-anthropic` | [](https://pypi.python.org/pypi/openinference-instrumentation-anthropic) |\n| [Smolagents](https://huggingface.co/docs/smolagents/en/tutorials/inspect_runs) | `openinference-instrumentation-smolagents` | [](https://pypi.python.org/pypi/openinference-instrumentation-smolagents) |\n\n### JavaScript Integrations\n\n| Integration | Package | Version Badge |\n| ------------------------------------------------------------------------------------------ | -------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| [OpenAI](https://docs.arize.com/phoenix/tracing/integrations-tracing/openai-node-sdk) | `@arizeai/openinference-instrumentation-openai` | [](https://www.npmjs.com/package/@arizeai/openinference-instrumentation-openai) |\n| [LangChain.js](https://docs.arize.com/phoenix/tracing/integrations-tracing/langchain.js) | `@arizeai/openinference-instrumentation-langchain` | [](https://www.npmjs.com/package/@arizeai/openinference-instrumentation-langchain) |\n| [Vercel AI SDK](https://docs.arize.com/phoenix/tracing/integrations-tracing/vercel-ai-sdk) | `@arizeai/openinference-vercel` | [](https://www.npmjs.com/package/@arizeai/openinference-vercel) |\n| [BeeAI](https://docs.arize.com/phoenix/tracing/integrations-tracing/beeai) | `@arizeai/openinference-instrumentation-beeai` | [](https://www.npmjs.com/package/@arizeai/openinference-instrumentation-beeai) |\n\n\n## Community\n\nJoin our community to connect with thousands of AI builders.\n\n- \ud83c\udf0d Join our [Slack community](https://arize-ai.slack.com/join/shared_invite/zt-11t1vbu4x-xkBIHmOREQnYnYDH1GDfCg?__hstc=259489365.a667dfafcfa0169c8aee4178d115dc81.1733501603539.1733501603539.1733501603539.1&__hssc=259489365.1.1733501603539&__hsfp=3822854628&submissionGuid=381a0676-8f38-437b-96f2-fc10875658df#/shared-invite/email).\n- \ud83d\udcda Read our [documentation](https://docs.arize.com/arize).\n- \ud83d\udca1 Ask questions and provide feedback in the _#arize-support_ channel.\n- \ud835\udd4f Follow us on [\ud835\udd4f](https://twitter.com/ArizeAI).\n- \ud83e\uddd1\u200d\ud83c\udfeb Deep dive into everything [Agents](http://arize.com/ai-agents/) and [LLM Evaluations](https://arize.com/llm-evaluation) on Arize's Learning Hubs.\n\nCopyright 2025 Arize AI, Inc. All Rights Reserved.\n",
"bugtrack_url": null,
"license": "BSD",
"summary": "A helper library to interact with Arize AI APIs",
"version": "7.47.0",
"project_urls": {
"Changelog": "https://github.com/Arize-ai/client_python/blob/main/CHANGELOG.md",
"Documentation": "https://docs.arize.com/arize",
"Homepage": "https://arize.com",
"Issues": "https://github.com/Arize-ai/client_python/issues",
"Source": "https://github.com/Arize-ai/client_python"
},
"split_keywords": [
"arize",
" evaluations",
" explainability",
" llm",
" monitoring",
" observability",
" tracing"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "c5787eb21132b59d4b826f63bd96bb3f6f1657a15ad4e479b66c64ebe215bea8",
"md5": "97b3f9d355c2652840ba1a379a9d1271",
"sha256": "2c6f2d9cd9afca655c082a946a6d8fe70e79d45155ed5293185941938b695def"
},
"downloads": -1,
"filename": "arize-7.47.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "97b3f9d355c2652840ba1a379a9d1271",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.6",
"size": 235608,
"upload_time": "2025-07-08T23:30:40",
"upload_time_iso_8601": "2025-07-08T23:30:40.185525Z",
"url": "https://files.pythonhosted.org/packages/c5/78/7eb21132b59d4b826f63bd96bb3f6f1657a15ad4e479b66c64ebe215bea8/arize-7.47.0-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "457de9a438e1ffb5cb567dc1b37b60b322ad8ac84935be9fd7164d10a0c6ce5b",
"md5": "e239049834469bdaddd8a6e3eb64bfc9",
"sha256": "ae1e6f004ba687e4484a99f52b0b69edb8f5aac0e1816b016433e16e35ed0386"
},
"downloads": -1,
"filename": "arize-7.47.0.tar.gz",
"has_sig": false,
"md5_digest": "e239049834469bdaddd8a6e3eb64bfc9",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.6",
"size": 186928,
"upload_time": "2025-07-08T23:30:42",
"upload_time_iso_8601": "2025-07-08T23:30:42.309995Z",
"url": "https://files.pythonhosted.org/packages/45/7d/e9a438e1ffb5cb567dc1b37b60b322ad8ac84935be9fd7164d10a0c6ce5b/arize-7.47.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-07-08 23:30:42",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "Arize-ai",
"github_project": "client_python",
"travis_ci": false,
"coveralls": false,
"github_actions": false,
"lcname": "arize"
}