tunnelgo-client 3.0.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- tunnelgo_client-3.0.0/PKG-INFO +48 -0
- tunnelgo_client-3.0.0/README.md +26 -0
- tunnelgo_client-3.0.0/pyproject.toml +37 -0
- tunnelgo_client-3.0.0/setup.cfg +4 -0
- tunnelgo_client-3.0.0/tunnelgo_client/__init__.py +5 -0
- tunnelgo_client-3.0.0/tunnelgo_client/__main__.py +6 -0
- tunnelgo_client-3.0.0/tunnelgo_client/client.py +1208 -0
- tunnelgo_client-3.0.0/tunnelgo_client.egg-info/PKG-INFO +48 -0
- tunnelgo_client-3.0.0/tunnelgo_client.egg-info/SOURCES.txt +11 -0
- tunnelgo_client-3.0.0/tunnelgo_client.egg-info/dependency_links.txt +1 -0
- tunnelgo_client-3.0.0/tunnelgo_client.egg-info/entry_points.txt +2 -0
- tunnelgo_client-3.0.0/tunnelgo_client.egg-info/requires.txt +5 -0
- tunnelgo_client-3.0.0/tunnelgo_client.egg-info/top_level.txt +1 -0
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: tunnelgo-client
|
|
3
|
+
Version: 3.0.0
|
|
4
|
+
Summary: TunnelGo 内网穿透客户端 - Go Server Compatible, 支持 IPv6/IPv4 P2P + 服务器中转 + HTTP独立端口 + TCP转发 + 子域名路由
|
|
5
|
+
Author: TunnelGo
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/ctz168/tunnelgo
|
|
8
|
+
Keywords: tunnel,nat,p2p,ipv6,内网穿透,tunnelgo
|
|
9
|
+
Classifier: Programming Language :: Python :: 3
|
|
10
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
11
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
15
|
+
Classifier: Operating System :: OS Independent
|
|
16
|
+
Requires-Python: >=3.8
|
|
17
|
+
Description-Content-Type: text/markdown
|
|
18
|
+
Requires-Dist: aiohttp>=3.9.0
|
|
19
|
+
Provides-Extra: dev
|
|
20
|
+
Requires-Dist: build; extra == "dev"
|
|
21
|
+
Requires-Dist: twine; extra == "dev"
|
|
22
|
+
|
|
23
|
+
# TunnelGo Client
|
|
24
|
+
|
|
25
|
+
内网穿透客户端,配合 [TunnelGo](https://github.com/ctz168/tunnelgo) Go 服务端使用。
|
|
26
|
+
|
|
27
|
+
## 安装
|
|
28
|
+
|
|
29
|
+
```bash
|
|
30
|
+
pip install tunnelgo-client
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
## 使用
|
|
34
|
+
|
|
35
|
+
```bash
|
|
36
|
+
# 基本模式
|
|
37
|
+
tunnelgo-client --key YOUR_TOKEN --port 8080
|
|
38
|
+
|
|
39
|
+
# 子域名模式(推荐)
|
|
40
|
+
tunnelgo-client -k YOUR_TOKEN -p 8080 --subdomain myapp
|
|
41
|
+
|
|
42
|
+
# TCP 转发
|
|
43
|
+
tunnelgo-client -k YOUR_TOKEN -p 8080 --tcp-ports 22,3306
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
## License
|
|
47
|
+
|
|
48
|
+
MIT
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# TunnelGo Client
|
|
2
|
+
|
|
3
|
+
内网穿透客户端,配合 [TunnelGo](https://github.com/ctz168/tunnelgo) Go 服务端使用。
|
|
4
|
+
|
|
5
|
+
## 安装
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
pip install tunnelgo-client
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## 使用
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
# 基本模式
|
|
15
|
+
tunnelgo-client --key YOUR_TOKEN --port 8080
|
|
16
|
+
|
|
17
|
+
# 子域名模式(推荐)
|
|
18
|
+
tunnelgo-client -k YOUR_TOKEN -p 8080 --subdomain myapp
|
|
19
|
+
|
|
20
|
+
# TCP 转发
|
|
21
|
+
tunnelgo-client -k YOUR_TOKEN -p 8080 --tcp-ports 22,3306
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
## License
|
|
25
|
+
|
|
26
|
+
MIT
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=64", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "tunnelgo-client"
|
|
7
|
+
version = "3.0.0"
|
|
8
|
+
description = "TunnelGo 内网穿透客户端 - Go Server Compatible, 支持 IPv6/IPv4 P2P + 服务器中转 + HTTP独立端口 + TCP转发 + 子域名路由"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = "MIT"
|
|
11
|
+
requires-python = ">=3.8"
|
|
12
|
+
authors = [{name = "TunnelGo"}]
|
|
13
|
+
keywords = ["tunnel", "nat", "p2p", "ipv6", "内网穿透", "tunnelgo"]
|
|
14
|
+
classifiers = [
|
|
15
|
+
"Programming Language :: Python :: 3",
|
|
16
|
+
"Programming Language :: Python :: 3.8",
|
|
17
|
+
"Programming Language :: Python :: 3.9",
|
|
18
|
+
"Programming Language :: Python :: 3.10",
|
|
19
|
+
"Programming Language :: Python :: 3.11",
|
|
20
|
+
"Programming Language :: Python :: 3.12",
|
|
21
|
+
"Operating System :: OS Independent",
|
|
22
|
+
]
|
|
23
|
+
dependencies = [
|
|
24
|
+
"aiohttp>=3.9.0",
|
|
25
|
+
]
|
|
26
|
+
|
|
27
|
+
[project.optional-dependencies]
|
|
28
|
+
dev = ["build", "twine"]
|
|
29
|
+
|
|
30
|
+
[project.scripts]
|
|
31
|
+
tunnelgo-client = "tunnelgo_client.client:main"
|
|
32
|
+
|
|
33
|
+
[project.urls]
|
|
34
|
+
Homepage = "https://github.com/ctz168/tunnelgo"
|
|
35
|
+
|
|
36
|
+
[tool.setuptools.packages.find]
|
|
37
|
+
include = ["tunnelgo_client*"]
|