Skip to content

Commit 16fe421

Browse files
committed
fix: typos, add notice
1 parent 4dbecba commit 16fe421

File tree

2 files changed

+4
-10
lines changed

2 files changed

+4
-10
lines changed

README.md

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
> Check out [nichind/singbox2proxy](https://github.com/nichind/singbox2proxy), a similar library with better performance and more features, supporting SingBox links (hy2://, tuic://, etc.) in addition to V2Ray links, chaining support & built-in http client.
2+
3+
14
# v2ray2proxy
25

36
A Python library to convert V2Ray configuration links (vmess://, vless://, ss://, trojan://) to usable HTTP and SOCKS5 proxies for Python HTTP clients.
@@ -138,11 +141,6 @@ python -m v2ray2proxy "vmess://..." --pool --pool-size 3
138141
- **Shadowsocks**: `ss://...` - Shadowsocks protocol
139142
- **Trojan**: `trojan://...` - Trojan protocol
140143

141-
## Requirements
142-
143-
- Python 3.9+
144-
- No external V2Ray installation needed (automatically downloaded)
145-
146144
## Advanced Usage
147145

148146
### Custom Ports
@@ -192,10 +190,6 @@ config_path = proxy.create_config_file()
192190
print(f"Config file created at: {config_path}")
193191
```
194192

195-
## Some thoughts
196-
197-
Each v2ray instance eats about ~17MB of RAM on Linux, under 10MB on W11
198-
199193
## License
200194

201195
MIT

v2ray2proxy/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
from .base import V2RayCore, V2RayProxy, V2RayPool
66

7-
VERSION = "0.3"
7+
VERSION = "0.3.2"
88

99
print(f"v2ray2proxy version {VERSION}")
1010

0 commit comments

Comments
 (0)