solax-py-library 1.0.0.5__py3-none-any.whl → 1.0.0.6__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.
- solax_py_library/upload/core/upload_service/base.py +1 -0
- solax_py_library/upload/core/upload_service/ftp.py +1 -1
- solax_py_library-1.0.0.6.dist-info/METADATA +69 -0
- {solax_py_library-1.0.0.5.dist-info → solax_py_library-1.0.0.6.dist-info}/RECORD +5 -5
- solax_py_library-1.0.0.5.dist-info/METADATA +0 -20
- {solax_py_library-1.0.0.5.dist-info → solax_py_library-1.0.0.6.dist-info}/WHEEL +0 -0
@@ -39,7 +39,7 @@ class FTPUploadService(BaseUploadService):
|
|
39
39
|
if self._client is not None:
|
40
40
|
self.close()
|
41
41
|
try:
|
42
|
-
self._client = ftplib.FTP(self.host)
|
42
|
+
self._client = ftplib.FTP(self.host, timeout=self.timeout)
|
43
43
|
self._client.login(self.user, self.password)
|
44
44
|
print(f"Connected to {self.host}")
|
45
45
|
self._is_connect = True
|
@@ -0,0 +1,69 @@
|
|
1
|
+
Metadata-Version: 2.1
|
2
|
+
Name: solax-py-library
|
3
|
+
Version: 1.0.0.6
|
4
|
+
Summary: some common tool
|
5
|
+
Author: shenlvyu
|
6
|
+
Author-email: 13296718439@163.com
|
7
|
+
Requires-Python: >=3.8,<4.0
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
9
|
+
Classifier: Programming Language :: Python :: 3.8
|
10
|
+
Classifier: Programming Language :: Python :: 3.9
|
11
|
+
Classifier: Programming Language :: Python :: 3.10
|
12
|
+
Classifier: Programming Language :: Python :: 3.11
|
13
|
+
Classifier: Programming Language :: Python :: 3.12
|
14
|
+
Classifier: Programming Language :: Python :: 3.13
|
15
|
+
Requires-Dist: pydantic (>=1.10.0,<2.0.0)
|
16
|
+
Requires-Dist: typing-extensions (==4.7.1)
|
17
|
+
Description-Content-Type: text/markdown
|
18
|
+
|
19
|
+
### solax common module
|
20
|
+
|
21
|
+
#### install
|
22
|
+
|
23
|
+
```shell
|
24
|
+
pip install solax_py_library
|
25
|
+
```
|
26
|
+
|
27
|
+
#### struction
|
28
|
+
|
29
|
+
module:
|
30
|
+
- api: provide the api
|
31
|
+
- core: core code
|
32
|
+
- errors: define errors
|
33
|
+
- test: unit tests
|
34
|
+
- types: modle define
|
35
|
+
|
36
|
+
#### module
|
37
|
+
|
38
|
+
This package provide some general modules to help us can focus on the real project coding.It`s our own package,we can add more and more general modules.
|
39
|
+
|
40
|
+
- upload: The module define the upload tool.It support the way by Ftp.
|
41
|
+
|
42
|
+
|
43
|
+
#### quick start
|
44
|
+
|
45
|
+
```python
|
46
|
+
await upload(
|
47
|
+
upload_type=UploadType.FTP,
|
48
|
+
configuration=ftp_config,
|
49
|
+
upload_data=UploadData(
|
50
|
+
upload_type=UploadType.FTP,
|
51
|
+
data=dict(
|
52
|
+
file_type=FTPFileType.CSV,
|
53
|
+
file_name="new_file.csv",
|
54
|
+
data=[
|
55
|
+
{
|
56
|
+
"EMS1000序列号": "XMG11A011L",
|
57
|
+
"EMS1000本地时间": "2025-02-11 15:39:10",
|
58
|
+
"EMS1000版本号": "V007.11.1",
|
59
|
+
"电站所在国家和地区": None,
|
60
|
+
"电站所在当前时区": None,
|
61
|
+
"电站系统类型": None,
|
62
|
+
}
|
63
|
+
],
|
64
|
+
),
|
65
|
+
),
|
66
|
+
)
|
67
|
+
```
|
68
|
+
|
69
|
+
|
@@ -7,8 +7,8 @@ solax_py_library/upload/core/data_adapter/__init__.py,sha256=9CXepLZSOjZMfNjyYKA
|
|
7
7
|
solax_py_library/upload/core/data_adapter/base.py,sha256=Va-SEe0eL3gobhNOnzHGkYBLIwf5RVawQdYRHHXg9g0,170
|
8
8
|
solax_py_library/upload/core/data_adapter/csv.py,sha256=8nlnV_43mMAR3re50MQJymzT5HYpZOo7eSeMsEfnEVE,861
|
9
9
|
solax_py_library/upload/core/upload_service/__init__.py,sha256=uA-UeH31rDNxByeZwvPhNFHPV_-J8JyCev8geuc---k,269
|
10
|
-
solax_py_library/upload/core/upload_service/base.py,sha256=
|
11
|
-
solax_py_library/upload/core/upload_service/ftp.py,sha256=
|
10
|
+
solax_py_library/upload/core/upload_service/base.py,sha256=dxCBVtPxDhN7oRTjnwnjtc2XAF4hyIz9HsYCJePlggg,912
|
11
|
+
solax_py_library/upload/core/upload_service/ftp.py,sha256=dBIf2ZiwYG3KEalVPK5PcYtVhce4fALndHNnFmS8iJI,2674
|
12
12
|
solax_py_library/upload/errors/__init__.py,sha256=pVAcSOXvlsPJW3PjHLBOdbl7KvntiYmz7TP0XuRwZ_A,243
|
13
13
|
solax_py_library/upload/errors/base.py,sha256=T01ZrZHF25PWgCrOv76Vhg26hds3I1Yy8Kl2LZRKOxo,258
|
14
14
|
solax_py_library/upload/errors/upload_error.py,sha256=9pCZzR_y3-VkBWSs5w7mMHYFRJjzVosIcxi-5SO8N1U,409
|
@@ -17,6 +17,6 @@ solax_py_library/upload/test/test_ftp.py,sha256=lCuPgi1VOW_JTq9m7tlyxhR64x4oE0F1
|
|
17
17
|
solax_py_library/upload/types/__init__.py,sha256=og9KBpYbcs36_S1izURj3vyHeuNOLJQrD9GpxK_JJaw,244
|
18
18
|
solax_py_library/upload/types/client.py,sha256=IE4tw2KFRmZABptmujB7SXG2-61cW7X7qN9b2IrBF3Y,505
|
19
19
|
solax_py_library/upload/types/ftp.py,sha256=APxneZ9m1OwImr3xZWnNkhxlh5Wy5rNCdegcVuOLyEM,644
|
20
|
-
solax_py_library-1.0.0.
|
21
|
-
solax_py_library-1.0.0.
|
22
|
-
solax_py_library-1.0.0.
|
20
|
+
solax_py_library-1.0.0.6.dist-info/METADATA,sha256=nTuZzLszbr8e6gy6vHuqJmYr4uL_dSpF4LRTdLRx564,1791
|
21
|
+
solax_py_library-1.0.0.6.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
|
22
|
+
solax_py_library-1.0.0.6.dist-info/RECORD,,
|
@@ -1,20 +0,0 @@
|
|
1
|
-
Metadata-Version: 2.1
|
2
|
-
Name: solax-py-library
|
3
|
-
Version: 1.0.0.5
|
4
|
-
Summary: some common tool
|
5
|
-
Author: shenlvyu
|
6
|
-
Author-email: 13296718439@163.com
|
7
|
-
Requires-Python: >=3.8,<4.0
|
8
|
-
Classifier: Programming Language :: Python :: 3
|
9
|
-
Classifier: Programming Language :: Python :: 3.8
|
10
|
-
Classifier: Programming Language :: Python :: 3.9
|
11
|
-
Classifier: Programming Language :: Python :: 3.10
|
12
|
-
Classifier: Programming Language :: Python :: 3.11
|
13
|
-
Classifier: Programming Language :: Python :: 3.12
|
14
|
-
Classifier: Programming Language :: Python :: 3.13
|
15
|
-
Requires-Dist: pydantic (>=1.10.0,<2.0.0)
|
16
|
-
Requires-Dist: typing-extensions (==4.7.1)
|
17
|
-
Description-Content-Type: text/markdown
|
18
|
-
|
19
|
-
### solax common module
|
20
|
-
|
File without changes
|