Metadata-Version: 2.4 Name: anyscale Version: 0.26.107 Summary: Command Line Interface for Anyscale Author: Anyscale Inc. License: AS License Requires-Python: >=3.9,<3.15 Description-Content-Type: text/markdown License-File: LICENSE License-File: NOTICE Requires-Dist: boto3>=1.26.76 Requires-Dist: botocore>=1.19.52 Requires-Dist: aiohttp>=3.7.4.post0 Requires-Dist: certifi>=2024.8.30 Requires-Dist: Click>=7.0 Requires-Dist: colorama Requires-Dist: google-auth Requires-Dist: jsonpatch Requires-Dist: jsonschema Requires-Dist: kubernetes Requires-Dist: oauth2client Requires-Dist: packaging Requires-Dist: pathspec>=0.8.1 Requires-Dist: python-dateutil Requires-Dist: requests Requires-Dist: rich Requires-Dist: six>=1.10 Requires-Dist: tabulate Requires-Dist: urllib3>=1.26.17 Requires-Dist: wrapt Requires-Dist: pyyaml Requires-Dist: smart_open Requires-Dist: tqdm Requires-Dist: tzlocal Requires-Dist: humanize Requires-Dist: typing_extensions Requires-Dist: termcolor>=1.1.0 Requires-Dist: colorama>=0.3.9 Requires-Dist: websockets; python_version > "3.8" Requires-Dist: websockets==13.1.0; python_version <= "3.8" Provides-Extra: gcp Requires-Dist: google-api-python-client; extra == "gcp" Requires-Dist: google-cloud-secret-manager; extra == "gcp" Requires-Dist: google-cloud-compute; extra == "gcp" Requires-Dist: google-cloud-resource-manager; extra == "gcp" Requires-Dist: google-cloud-filestore; extra == "gcp" Requires-Dist: google-cloud-storage; extra == "gcp" Requires-Dist: google-cloud-redis; extra == "gcp" Requires-Dist: google-cloud-certificate-manager; extra == "gcp" Provides-Extra: azure Requires-Dist: azure-identity; extra == "azure" Requires-Dist: azure-mgmt-resource>=25.0.0; extra == "azure" Requires-Dist: azure-mgmt-resource-deployments; extra == "azure" Requires-Dist: azure-storage-blob; extra == "azure" Provides-Extra: all Requires-Dist: google-api-python-client; extra == "all" Requires-Dist: google-cloud-secret-manager; extra == "all" Requires-Dist: google-cloud-compute; extra == "all" Requires-Dist: google-cloud-resource-manager; extra == "all" Requires-Dist: google-cloud-filestore; extra == "all" Requires-Dist: google-cloud-storage; extra == "all" Requires-Dist: google-cloud-redis; extra == "all" Requires-Dist: google-cloud-certificate-manager; extra == "all" Requires-Dist: azure-identity; extra == "all" Requires-Dist: azure-mgmt-resource>=25.0.0; extra == "all" Requires-Dist: azure-mgmt-resource-deployments; extra == "all" Requires-Dist: azure-storage-blob; extra == "all" Requires-Dist: ray>=2.0.0; extra == "all" Provides-Extra: backend Requires-Dist: google-api-python-client; extra == "backend" Requires-Dist: google-cloud-secret-manager; extra == "backend" Requires-Dist: google-cloud-compute; extra == "backend" Requires-Dist: google-cloud-resource-manager; extra == "backend" Requires-Dist: google-cloud-filestore; extra == "backend" Requires-Dist: google-cloud-storage; extra == "backend" Requires-Dist: google-cloud-redis; extra == "backend" Requires-Dist: google-cloud-certificate-manager; extra == "backend" Requires-Dist: terminado; extra == "backend" Requires-Dist: tornado; extra == "backend" Dynamic: author Dynamic: description Dynamic: description-content-type Dynamic: license Dynamic: license-file Dynamic: provides-extra Dynamic: requires-dist Dynamic: requires-python Dynamic: summary # Anyscale This package contains the command line interface and the sdk for the Anyscale platform. View Anyscale docs [here](https://docs.anyscale.com) View CLI docs [here](https://docs.anyscale.com/reference#cli) View SDK docs [here](https://docs.anyscale.com/reference#sdk) ## Environment variables ### `ANYSCALE_LOG_STREAM` Selects the stream used for informational CLI and SDK output — progress messages, block headings and spinners. Accepts `stderr` (the default) or `stdout`; unrecognized values are treated as `stderr`. Warnings, errors and `ANYSCALE_DEBUG` output always go to stderr, whatever this is set to. Set `ANYSCALE_LOG_STREAM=stdout` when a log collector classifies everything on stderr as an error — the GKE logging agent, for example — so that a normal deployment stops showing up as a failure. Commands asked for a machine-readable payload (`--json`, `--yaml`, `-o json`, `-o yaml`) ignore this setting and keep informational output on stderr, so the payload on stdout stays parseable. One thing to know before turning it on: informational output can contain sensitive values — tokens the CLI prints on purpose (`anyscale service token add`, `anyscale service-account create`) and anything echoed back from a config you pass in, including a workload's `env_vars`. Treat stdout as no less sensitive than stderr wherever the two are collected or retained differently. After making any changes to the CLI, be sure to run `pip install -U -e .` from within the `frontend/cli` directory to update your environment with the latest modifications.