auto-coder-web 0.1.0__py3-none-any.whl
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.
- auto_coder_web/__init__.py +0 -0
- auto_coder_web/auto_coder_runner.py +694 -0
- auto_coder_web/file_group.py +69 -0
- auto_coder_web/file_manager.py +114 -0
- auto_coder_web/hello.py +36 -0
- auto_coder_web/json_file_storage.py +44 -0
- auto_coder_web/proxy.py +532 -0
- auto_coder_web/terminal.py +259 -0
- auto_coder_web/version.py +1 -0
- auto_coder_web/web/asset-manifest.json +15 -0
- auto_coder_web/web/favicon.ico +0 -0
- auto_coder_web/web/index.html +1 -0
- auto_coder_web/web/logo192.png +0 -0
- auto_coder_web/web/logo512.png +0 -0
- auto_coder_web/web/manifest.json +25 -0
- auto_coder_web/web/robots.txt +3 -0
- auto_coder_web/web/static/css/main.0441fea8.css +6 -0
- auto_coder_web/web/static/css/main.0441fea8.css.map +1 -0
- auto_coder_web/web/static/js/453.8ab44547.chunk.js +2 -0
- auto_coder_web/web/static/js/453.8ab44547.chunk.js.map +1 -0
- auto_coder_web/web/static/js/main.9cc516f4.js +3 -0
- auto_coder_web/web/static/js/main.9cc516f4.js.LICENSE.txt +119 -0
- auto_coder_web/web/static/js/main.9cc516f4.js.map +1 -0
- auto_coder_web-0.1.0.dist-info/METADATA +34 -0
- auto_coder_web-0.1.0.dist-info/RECORD +28 -0
- auto_coder_web-0.1.0.dist-info/WHEEL +5 -0
- auto_coder_web-0.1.0.dist-info/entry_points.txt +2 -0
- auto_coder_web-0.1.0.dist-info/top_level.txt +1 -0
@@ -0,0 +1,34 @@
|
|
1
|
+
Metadata-Version: 2.1
|
2
|
+
Name: auto_coder_web
|
3
|
+
Version: 0.1.0
|
4
|
+
Summary: auto-coder.web: A Python Project
|
5
|
+
Author: allwefantasy
|
6
|
+
Classifier: Programming Language :: Python :: 3.9
|
7
|
+
Classifier: Programming Language :: Python :: 3.10
|
8
|
+
Classifier: Programming Language :: Python :: 3.11
|
9
|
+
Description-Content-Type: text/markdown
|
10
|
+
Requires-Dist: auto-coder
|
11
|
+
Requires-Dist: aiofiles
|
12
|
+
Requires-Dist: psutil
|
13
|
+
Requires-Dist: sse-starlette
|
14
|
+
|
15
|
+
# auto-coder.web
|
16
|
+
|
17
|
+
## 安装
|
18
|
+
|
19
|
+
```
|
20
|
+
pip install auto_coder_web
|
21
|
+
```
|
22
|
+
|
23
|
+
## 进入项目
|
24
|
+
|
25
|
+
```
|
26
|
+
cd <project_dir>
|
27
|
+
auto-coder.web
|
28
|
+
```
|
29
|
+
|
30
|
+
## 打开浏览器
|
31
|
+
|
32
|
+
http://localhost:8007
|
33
|
+
|
34
|
+
开始你的编程!
|
@@ -0,0 +1,28 @@
|
|
1
|
+
auto_coder_web/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
|
+
auto_coder_web/auto_coder_runner.py,sha256=1KVY83g5e5Fs4PPOKuSpeUV5I7fFAzaJYhV4vUHf8bM,26551
|
3
|
+
auto_coder_web/file_group.py,sha256=wS52bHDT_gATIrHgVq62Mv1JMLGzdY_AU08iPzw4eLU,2540
|
4
|
+
auto_coder_web/file_manager.py,sha256=wYe0NKqclhB22zTXT7du-5WRqne65tAZiTVAKsEZiaA,4236
|
5
|
+
auto_coder_web/hello.py,sha256=H-BM5gdpcfTT4T2pn7Q1qWfquf0jwzGRuOBozbc8dbA,741
|
6
|
+
auto_coder_web/json_file_storage.py,sha256=elthpcdclXITX3jew2EtT-ypyxZzDAzG1U7_k3looHI,1757
|
7
|
+
auto_coder_web/proxy.py,sha256=U7fo4ZiLOuoJ2HRo3XQuwW_Xkzw0X2_PUfTUF2zTONY,19870
|
8
|
+
auto_coder_web/terminal.py,sha256=1oQRIeLCifdBG4KBGvVeigpDJXILbw1cTdMs1gFihn8,9539
|
9
|
+
auto_coder_web/version.py,sha256=kUR5RAFc7HCeiqdlX36dZOHkUI5wI6V_43RpEcD8b-0,22
|
10
|
+
auto_coder_web/web/asset-manifest.json,sha256=5BdawPBZUyGD7ZrHzuaobpO4zsdA6d5XJk8gL9wVqDc,517
|
11
|
+
auto_coder_web/web/favicon.ico,sha256=PRD32mxgMXg0AIFmjErFs66XQ8qaJiqw_NMS-7n0i90,3870
|
12
|
+
auto_coder_web/web/index.html,sha256=xjnJ2NFgcmC2rkdmyiLXr6FucWAH_yPtu-aNFMnNGxg,644
|
13
|
+
auto_coder_web/web/logo192.png,sha256=w4Y5bscNs2CAdbX7-qxKscyqhroFpoqzk-xVHrZsPgA,5347
|
14
|
+
auto_coder_web/web/logo512.png,sha256=nqT02nBQwMxAiSb2o5wlNiTpursdQ8eXfNghRFpgtGE,9664
|
15
|
+
auto_coder_web/web/manifest.json,sha256=ULPYw5A68_eNhxuUVXqxT045yhkurKPSz6hjyGcnmhQ,492
|
16
|
+
auto_coder_web/web/robots.txt,sha256=kNJLw79pisHhc3OVAimMzKcq3x9WT6sF9IS4xI0crdI,67
|
17
|
+
auto_coder_web/web/static/css/main.0441fea8.css,sha256=iOKpTUl1X06I17VS--UyeNr8Y6skf3E0ugiVHfmUO2Q,18052
|
18
|
+
auto_coder_web/web/static/css/main.0441fea8.css.map,sha256=EIOGXoW7tXuWIHqVDPj2FSFdOU98KnsFpz8ilIiHbKI,16835
|
19
|
+
auto_coder_web/web/static/js/453.8ab44547.chunk.js,sha256=CTOpYLTdAIrt_JsmzmQhk_QhLpTgo1ThDC6BCnhcdy8,4516
|
20
|
+
auto_coder_web/web/static/js/453.8ab44547.chunk.js.map,sha256=wREUtlLXEFnEOhAE4DknbRQW0J-nJDLmkOttDDEV3FA,10597
|
21
|
+
auto_coder_web/web/static/js/main.9cc516f4.js,sha256=iO5iXPNLmB4v3qV6StxJj2J5IRYs46w7s1lJSRjrmrM,1244981
|
22
|
+
auto_coder_web/web/static/js/main.9cc516f4.js.LICENSE.txt,sha256=zZOBg89K-dH6tuB3DClwuUVuHP4b2EuhFgNSbsPBYUQ,19988
|
23
|
+
auto_coder_web/web/static/js/main.9cc516f4.js.map,sha256=KOLdEcnqyuFLTl1z2OYt5fGSp4Pr8qlgLi_UFDGORJ8,4977274
|
24
|
+
auto_coder_web-0.1.0.dist-info/METADATA,sha256=aQk91xU_bon4g1GgVrN5g6x89pflu3JfmzG81eIx644,608
|
25
|
+
auto_coder_web-0.1.0.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
|
26
|
+
auto_coder_web-0.1.0.dist-info/entry_points.txt,sha256=oh8kd1ZecWDgdv-bIj_ru3phvl4scuxwXl9DK0Khltg,61
|
27
|
+
auto_coder_web-0.1.0.dist-info/top_level.txt,sha256=UCzEw494Im0KvR-FTYf2jh-okqHvLsC_0JLOrQZoSpg,15
|
28
|
+
auto_coder_web-0.1.0.dist-info/RECORD,,
|
@@ -0,0 +1 @@
|
|
1
|
+
auto_coder_web
|