Metadata-Version: 2.1
Name: twc-cli
Version: 1.0.0rc0
Summary: Timeweb Cloud Command Line Interface.
Home-page: https://github.com/timeweb-cloud/twc
License: MIT
Author: ge
Author-email: dev@timeweb.cloud
Requires-Python: >=3.7,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Dist: click (>=8.1.3,<9.0.0)
Requires-Dist: click-aliases (>=1.0.1,<2.0.0)
Requires-Dist: pygments (>=2.14.0,<3.0.0)
Requires-Dist: pyyaml (>=6.0,<7.0)
Requires-Dist: requests (>=2.28.1,<3.0.0)
Requires-Dist: toml (>=0.10.2,<0.11.0)
Project-URL: Repository, https://github.com/timeweb-cloud/twc
Description-Content-Type: text/markdown

![TWC CLI](https://github.com/timeweb-cloud/twc/blob/master/artwork/logo.svg)

Timeweb Cloud Command Line Interface and simple SDK 💫

> [Документация на русском](https://github.com/timeweb-cloud/twc/blob/master/docs/ru/README.md) 🇷🇺

# Installation

```
pip install twc-cli
```

# 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

## Bash

Add this to **~/.bashrc**:

```
eval "$(_TWC_COMPLETE=bash_source twc)"
```

## Zsh

Add this to **~/.zshrc**:

```
eval "$(_TWC_COMPLETE=zsh_source twc)"
```

## Fish

Add this to **~/.config/fish/completions/tw.fish**:

```
eval (env _TWC_COMPLETE=fish_source twc)
```

