rcoder 1.0.2__tar.gz → 1.0.4__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.
- {rcoder-1.0.2/rcoder.egg-info → rcoder-1.0.4}/PKG-INFO +1 -1
- {rcoder-1.0.2 → rcoder-1.0.4}/pyproject.toml +1 -1
- {rcoder-1.0.2 → rcoder-1.0.4}/rcoder/cli.py +5 -1
- {rcoder-1.0.2 → rcoder-1.0.4}/rcoder/utils.py +4 -0
- {rcoder-1.0.2 → rcoder-1.0.4/rcoder.egg-info}/PKG-INFO +1 -1
- {rcoder-1.0.2 → rcoder-1.0.4}/setup.py +1 -1
- {rcoder-1.0.2 → rcoder-1.0.4}/LICENSE +0 -0
- {rcoder-1.0.2 → rcoder-1.0.4}/README.md +0 -0
- {rcoder-1.0.2 → rcoder-1.0.4}/README_RCODER.md +0 -0
- {rcoder-1.0.2 → rcoder-1.0.4}/rcoder/__init__.py +0 -0
- {rcoder-1.0.2 → rcoder-1.0.4}/rcoder/async_feedback.py +0 -0
- {rcoder-1.0.2 → rcoder-1.0.4}/rcoder/async_proxy.py +0 -0
- {rcoder-1.0.2 → rcoder-1.0.4}/rcoder/auto_optimizer.py +0 -0
- {rcoder-1.0.2 → rcoder-1.0.4}/rcoder/conversational_config.py +0 -0
- {rcoder-1.0.2 → rcoder-1.0.4}/rcoder/core.py +0 -0
- {rcoder-1.0.2 → rcoder-1.0.4}/rcoder/core_optimized.py +0 -0
- {rcoder-1.0.2 → rcoder-1.0.4}/rcoder/process_manager.py +0 -0
- {rcoder-1.0.2 → rcoder-1.0.4}/rcoder/remote_tools.py +0 -0
- {rcoder-1.0.2 → rcoder-1.0.4}/rcoder/server_installer.py +0 -0
- {rcoder-1.0.2 → rcoder-1.0.4}/rcoder.egg-info/SOURCES.txt +0 -0
- {rcoder-1.0.2 → rcoder-1.0.4}/rcoder.egg-info/dependency_links.txt +0 -0
- {rcoder-1.0.2 → rcoder-1.0.4}/rcoder.egg-info/entry_points.txt +0 -0
- {rcoder-1.0.2 → rcoder-1.0.4}/rcoder.egg-info/requires.txt +0 -0
- {rcoder-1.0.2 → rcoder-1.0.4}/rcoder.egg-info/top_level.txt +0 -0
- {rcoder-1.0.2 → rcoder-1.0.4}/setup.cfg +0 -0
|
@@ -63,6 +63,10 @@ class ConfigManager:
|
|
|
63
63
|
use_https_disguise: bool = True,
|
|
64
64
|
proxy_server: Optional[tuple] = None):
|
|
65
65
|
"""添加服务器配置"""
|
|
66
|
+
# 确保servers键存在
|
|
67
|
+
if 'servers' not in self.config:
|
|
68
|
+
self.config['servers'] = {}
|
|
69
|
+
|
|
66
70
|
self.config['servers'][name] = {
|
|
67
71
|
'host': host,
|
|
68
72
|
'port': port,
|
|
@@ -14,7 +14,7 @@ with open(os.path.join(os.path.dirname(__file__), 'README_RCODER.md'), 'r', enco
|
|
|
14
14
|
setup(
|
|
15
15
|
# 包信息
|
|
16
16
|
name="rcoder",
|
|
17
|
-
version="1.0.
|
|
17
|
+
version="1.0.4",
|
|
18
18
|
description="远程代码执行与管理系统,支持低带宽场景和中转服务器场景",
|
|
19
19
|
long_description=long_description,
|
|
20
20
|
long_description_content_type="text/markdown",
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|