ryry-cli 2.75__tar.gz → 2.76__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.
- {ryry_cli-2.75 → ryry_cli-2.76}/PKG-INFO +1 -1
- ryry_cli-2.76/ryry/constant.py +4 -0
- {ryry_cli-2.75 → ryry_cli-2.76}/ryry/upload.py +2 -2
- {ryry_cli-2.75 → ryry_cli-2.76}/ryry_cli.egg-info/PKG-INFO +1 -1
- {ryry_cli-2.75 → ryry_cli-2.76}/setup.py +1 -1
- ryry_cli-2.75/ryry/constant.py +0 -4
- {ryry_cli-2.75 → ryry_cli-2.76}/LICENSE +0 -0
- {ryry_cli-2.75 → ryry_cli-2.76}/README.md +0 -0
- {ryry_cli-2.75 → ryry_cli-2.76}/ryry/__init__.py +0 -0
- {ryry_cli-2.75 → ryry_cli-2.76}/ryry/main.py +0 -0
- {ryry_cli-2.75 → ryry_cli-2.76}/ryry/ryry_server_socket.py +0 -0
- {ryry_cli-2.75 → ryry_cli-2.76}/ryry/ryry_service.py +0 -0
- {ryry_cli-2.75 → ryry_cli-2.76}/ryry/ryry_webapi.py +0 -0
- {ryry_cli-2.75 → ryry_cli-2.76}/ryry/ryry_widget.py +0 -0
- {ryry_cli-2.75 → ryry_cli-2.76}/ryry/script_template/__init__.py +0 -0
- {ryry_cli-2.75 → ryry_cli-2.76}/ryry/script_template/main.py +0 -0
- {ryry_cli-2.75 → ryry_cli-2.76}/ryry/script_template/run.py +0 -0
- {ryry_cli-2.75 → ryry_cli-2.76}/ryry/server_func.py +0 -0
- {ryry_cli-2.75 → ryry_cli-2.76}/ryry/store.py +0 -0
- {ryry_cli-2.75 → ryry_cli-2.76}/ryry/task.py +0 -0
- {ryry_cli-2.75 → ryry_cli-2.76}/ryry/taskUtils.py +0 -0
- {ryry_cli-2.75 → ryry_cli-2.76}/ryry/utils.py +0 -0
- {ryry_cli-2.75 → ryry_cli-2.76}/ryry_cli.egg-info/SOURCES.txt +0 -0
- {ryry_cli-2.75 → ryry_cli-2.76}/ryry_cli.egg-info/dependency_links.txt +0 -0
- {ryry_cli-2.75 → ryry_cli-2.76}/ryry_cli.egg-info/entry_points.txt +0 -0
- {ryry_cli-2.75 → ryry_cli-2.76}/ryry_cli.egg-info/requires.txt +0 -0
- {ryry_cli-2.75 → ryry_cli-2.76}/ryry_cli.egg-info/top_level.txt +0 -0
- {ryry_cli-2.75 → ryry_cli-2.76}/setup.cfg +0 -0
|
@@ -155,14 +155,14 @@ def getSubdomain(targetDomain):
|
|
|
155
155
|
for ip in SUBDOMAIN.keys():
|
|
156
156
|
for host_item in SUBDOMAIN[ip]:
|
|
157
157
|
if targetDomain == host_item["readpath"]:
|
|
158
|
-
if _can_connect_ftp(ip, host_item["
|
|
158
|
+
if _can_connect_ftp(ip, host_item["port"], host_item["username"], host_item["password"], host_item["writepath"]):
|
|
159
159
|
return host_item
|
|
160
160
|
return None
|
|
161
161
|
|
|
162
162
|
def getFirstSupportSubdomain():
|
|
163
163
|
for ip in SUBDOMAIN.keys():
|
|
164
164
|
for host_item in SUBDOMAIN[ip]:
|
|
165
|
-
if _can_connect_ftp(ip, host_item["
|
|
165
|
+
if _can_connect_ftp(ip, host_item["port"], host_item["username"], host_item["password"], host_item["writepath"]):
|
|
166
166
|
return host_item
|
|
167
167
|
return None
|
|
168
168
|
|
ryry_cli-2.75/ryry/constant.py
DELETED
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|