Metadata-Version: 2.1
Name: terminal-proxy
Version: 0.2.0
Summary: Proxy management tool for terminal.
Home-page: https://github.com/Prodesire/terminal-proxy
Author: Prodesire
Author-email: wangbinxin001@126.com
License: MIT License
Platform: UNKNOWN
Classifier: Operating System :: OS Independent
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: Implementation
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Topic :: Software Development :: Libraries
Description-Content-Type: text/markdown
Requires-Dist: click (>=0.7.0)
Requires-Dist: colorama (>=0.4.3)

# terminal-proxy

Proxy management tool for terminal.

## Install

```bash
pip install terminal-proxy
```

## Usage

### Config

```bash
proxy config 127.0.0.1:1080
```

### Turn on

```bash
# If you are on Windows, please run as administrator
# Turn on all proxies
proxy on

# Turn on http proxy
proxy on --http

# Turn on git proxy
proxy on --git
```

### Show

```bash
# Show all proxies. Also supports --http and --git
proxy show
```

### Turn off

```bash
# Turn off all proxies. Also supports --http and --git
proxy off
```


