Metadata-Version: 2.4
Name: twc-cli
Version: 2.14.1
Summary: Timeweb Cloud Command Line Interface.
License: MIT
License-File: COPYING
Author: ge
Author-email: dev@timeweb.cloud
Requires-Python: >=3.8.19,<4.0.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Requires-Dist: click (<8.2.0)
Requires-Dist: colorama (>=0.4.6,<0.5.0)
Requires-Dist: pygments (>=2.18.0,<3.0.0)
Requires-Dist: pyyaml (>=6.0.1,<7.0.0)
Requires-Dist: requests (>=2.32.4,<3.0.0)
Requires-Dist: shellingham (>=1.5.4,<2.0.0)
Requires-Dist: toml (>=0.10.2,<0.11.0)
Requires-Dist: typer-slim (>=0.12.3,<0.13.0)
Project-URL: Homepage, https://github.com/timeweb-cloud/twc
Project-URL: Repository, https://github.com/timeweb-cloud/twc
Description-Content-Type: text/markdown

<picture>
  <source media="(prefers-color-scheme: dark)" srcset="https://ec650031-twc-cli.s3.timeweb.cloud/dark.svg" type="image/svg+xml">
  <source media="(prefers-color-scheme: dark)" srcset="https://ec650031-twc-cli.s3.timeweb.cloud/dark.png" type="image/png">
  <source media="(prefers-color-scheme: light)" srcset="https://ec650031-twc-cli.s3.timeweb.cloud/light.svg" type="image/svg+xml">
  <source media="(prefers-color-scheme: light)" srcset="https://ec650031-twc-cli.s3.timeweb.cloud/light.png" type="image/png">
  <img alt="TWC CLI" src="https://ec650031-twc-cli.s3.timeweb.cloud/light.png">
</picture>

Timeweb Cloud Command Line Interface and simple SDK 💫

* [Руководство пользователя](https://github.com/timeweb-cloud/twc/blob/master/docs/ru/README.md) 🇷🇺
* [Command Line Interface (CLI) Reference](https://github.com/timeweb-cloud/twc/blob/master/docs/ru/CLI_REFERENCE.md)

# Installation

From PyPI registry via pip:

```
pip install twc-cli
```

Using [pipx](https://pipx.pypa.io/stable/):

```
pipx install twc-cli
```

Or install [zippap](https://docs.python.org/3/library/zipapp.html) in your PATH.
Look for prebuilt `.pyz` archives on [releases page](https://github.com/timeweb-cloud/twc/releases/latest).

# Getting started

Get Timeweb Cloud [access token](https://timeweb.cloud/my/api-keys) and
configure **twc** with command:

```
twc config
```

Enter your access token and hit `Enter`.

Configuration done! Let's use:

```
twc --help
```

# Shell completion

To install completion script run:

```
twc --install-completion
```

**twc** automatically detect your shell. Supported: Bash, Zsh, Fish, PowerShell.


