isrpa 0.8.8__tar.gz → 0.8.9__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.
- {isrpa-0.8.8 → isrpa-0.8.9}/PKG-INFO +1 -1
- {isrpa-0.8.8 → isrpa-0.8.9}/isrpa/utils.py +4 -4
- {isrpa-0.8.8 → isrpa-0.8.9}/isrpa.egg-info/PKG-INFO +1 -1
- {isrpa-0.8.8 → isrpa-0.8.9}/setup.py +1 -1
- {isrpa-0.8.8 → isrpa-0.8.9}/README.md +0 -0
- {isrpa-0.8.8 → isrpa-0.8.9}/isrpa/OCR.py +0 -0
- {isrpa-0.8.8 → isrpa-0.8.9}/isrpa/Template.py +0 -0
- {isrpa-0.8.8 → isrpa-0.8.9}/isrpa/Template_Exception.py +0 -0
- {isrpa-0.8.8 → isrpa-0.8.9}/isrpa/__init__.py +0 -0
- {isrpa-0.8.8 → isrpa-0.8.9}/isrpa/credentials.py +0 -0
- {isrpa-0.8.8 → isrpa-0.8.9}/isrpa/message.py +0 -0
- {isrpa-0.8.8 → isrpa-0.8.9}/isrpa.egg-info/SOURCES.txt +0 -0
- {isrpa-0.8.8 → isrpa-0.8.9}/isrpa.egg-info/dependency_links.txt +0 -0
- {isrpa-0.8.8 → isrpa-0.8.9}/isrpa.egg-info/requires.txt +0 -0
- {isrpa-0.8.8 → isrpa-0.8.9}/isrpa.egg-info/top_level.txt +0 -0
- {isrpa-0.8.8 → isrpa-0.8.9}/setup.cfg +0 -0
@@ -8,16 +8,16 @@ def getPath(user_name):
|
|
8
8
|
"""
|
9
9
|
环境变量设置
|
10
10
|
windows
|
11
|
-
setx address "192.168.12.
|
11
|
+
setx address "192.168.12.241"
|
12
12
|
|
13
13
|
linux
|
14
|
-
export address = "192.168.12.
|
14
|
+
export address = "192.168.12.241"
|
15
15
|
source /etc/profile
|
16
16
|
:param port:
|
17
17
|
:return:
|
18
18
|
"""
|
19
19
|
|
20
|
-
address = os.environ.get("address", "192.168.12.
|
20
|
+
address = os.environ.get("address", "192.168.12.241")
|
21
21
|
|
22
22
|
url = f"http://{address}/client/getPath"
|
23
23
|
print(url)
|
@@ -45,7 +45,7 @@ def upload_file(file_path, dest_file, user_name):
|
|
45
45
|
:return:
|
46
46
|
"""
|
47
47
|
|
48
|
-
address = os.environ.get("address", "192.168.12.
|
48
|
+
address = os.environ.get("address", "192.168.12.241")
|
49
49
|
url = f"http://{address}/client/noticeUpload"
|
50
50
|
print(url)
|
51
51
|
headers = {
|
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
|