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.
@@ -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*"]
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,5 @@
1
+ """
2
+ TunnelGo Client - 内网穿透客户端 (Go Server Compatible)
3
+ 支持 IPv6/IPv4 P2P 直连 + 服务器中转双模式
4
+ """
5
+ __version__ = "3.0.0"
@@ -0,0 +1,6 @@
1
+ """
2
+ 支持 python -m tunnelgo_client 方式运行
3
+ """
4
+ from tunnelgo_client.client import main
5
+
6
+ main()