Metadata-Version: 2.1
Name: easysocks5
Version: 0.0.2
Summary: easysocks5 is simple SOCKS5 server implementation with AsyncIO
Home-page: https://github.com/frankurcrazy/easysocks5
Author: Frank Chang
Author-email: frank@csie.io
License: MIT
Keywords: socks,socks5,asyncio
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Internet
Classifier: Topic :: System :: Networking
Requires-Python: >=3.7
Description-Content-Type: text/markdown

# easysocks5

***easysocks5*** is a simple SOCKS5 implementation based on AsyncIO.

Currently only SOCKS5 without authentication and CONNECT command are supported.

## Requirement
Python >= 3.7

## Quick guide

### Install from PyPI
```bash
python3 -m pip install easysocks5
python -m easysocks5.server -H 127.0.0.1 -P 8888
```

### Get latest version from GitHub
```bash
git clone https://github.com/frankurcrazy/easysocks5
cd easysocks5 && python -m easysocks5.server -H 127.0.0.1 -P 8888
```

## License
MIT


