solax-py-library 1.0.0.3__py3-none-any.whl → 1.0.0.4__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.
@@ -16,9 +16,9 @@ def upload_service(upload_type: UploadType, configuration: Dict[str, Any]):
16
16
  return upload_class(**configuration)
17
17
 
18
18
 
19
- def upload(
19
+ async def upload(
20
20
  upload_type: UploadType, configuration: Dict[str, Any], upload_data: UploadData
21
21
  ):
22
22
  service = upload_service(upload_type, configuration)
23
23
  with service as s:
24
- s.upload(upload_data)
24
+ await s.upload(upload_data)
@@ -14,7 +14,7 @@ class BaseUploadService(metaclass=ABCMeta):
14
14
  def connect(self):
15
15
  ...
16
16
 
17
- def upload(self, data: UploadData):
17
+ async def upload(self, data: UploadData):
18
18
  upload_data = self._parse(data.build_data())
19
19
  return self._upload(upload_data)
20
20
 
@@ -2,7 +2,7 @@ import ftplib
2
2
  import os
3
3
 
4
4
  from .base import BaseUploadService
5
- from solax_py_library.upload.types.client import UploadType, UploadData
5
+ from solax_py_library.upload.types.client import UploadType
6
6
  from solax_py_library.upload.core.data_adapter import CSVDataAdapter
7
7
  from solax_py_library.upload.types.ftp import (
8
8
  FTPServiceConfig,
@@ -60,8 +60,9 @@ class FTPUploadService(BaseUploadService):
60
60
  else:
61
61
  raise NotImplementedError
62
62
  return FTPParsedData(
63
- file_name=upload_data.build_full_path(self.remote_path) + upload_data.file_type.get_file_suffix(),
64
- file_path=parsed_data
63
+ file_name=upload_data.build_full_path(self.remote_path)
64
+ + upload_data.file_type.get_file_suffix(),
65
+ file_path=parsed_data,
65
66
  )
66
67
 
67
68
  def _upload(self, data: FTPParsedData):
@@ -2,18 +2,18 @@ import unittest
2
2
 
3
3
  from solax_py_library.upload.api.service import upload
4
4
  from solax_py_library.upload.types.client import UploadType, UploadData
5
- from solax_py_library.upload.types.ftp import FTPData, FTPFileType
5
+ from solax_py_library.upload.types.ftp import FTPFileType
6
6
 
7
7
 
8
8
  class FTPTest(unittest.TestCase):
9
- def test_ftp_upload(self):
9
+ async def test_ftp_upload(self):
10
10
  ftp_config = {
11
11
  "host": "10.1.31.181", # 测试host
12
12
  "user": "solax",
13
13
  "password": "sly402",
14
14
  "remote_path": "/xixi",
15
15
  }
16
- upload(
16
+ await upload(
17
17
  upload_type=UploadType.FTP,
18
18
  configuration=ftp_config,
19
19
  upload_data=UploadData(
@@ -21,7 +21,16 @@ class FTPTest(unittest.TestCase):
21
21
  data=dict(
22
22
  file_type=FTPFileType.CSV,
23
23
  file_name="new_file.csv",
24
- data=[{'EMS1000序列号': 'XMG11A011L', 'EMS1000本地时间': '2025-02-11 15:39:10', 'EMS1000版本号': 'V007.11.1', '电站所在国家和地区': None, '电站所在当前时区': None, '电站系统类型': None}],
24
+ data=[
25
+ {
26
+ "EMS1000序列号": "XMG11A011L",
27
+ "EMS1000本地时间": "2025-02-11 15:39:10",
28
+ "EMS1000版本号": "V007.11.1",
29
+ "电站所在国家和地区": None,
30
+ "电站所在当前时区": None,
31
+ "电站系统类型": None,
32
+ }
33
+ ],
25
34
  ),
26
35
  ),
27
36
  )
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: solax-py-library
3
- Version: 1.0.0.3
3
+ Version: 1.0.0.4
4
4
  Summary: some common tool
5
5
  Author: shenlvyu
6
6
  Author-email: 13296718439@163.com
@@ -1,23 +1,22 @@
1
1
  solax_py_library/__init__.py,sha256=qihwuOWhDJufT29zzCp1aGWTLNRvTWZzEjgqWCTgCmQ,21
2
- solax_py_library/main.py,sha256=gmPEDTm72i1IhTuWH__pAHeK8Y7PdAlpVSu0kUPqP5U,269
3
2
  solax_py_library/upload/__init__.py,sha256=M9vBP5Q1mD-hs-voqWNXtzLDKq1FBuFHSLw6a8WhP0E,85
4
3
  solax_py_library/upload/api/__init__.py,sha256=ASShe-YQxP0aA3B_I8EmpWKXIdXPWvaANifrzlYrFEk,84
5
- solax_py_library/upload/api/service.py,sha256=RJ8oqIqsVA8d978UDGgNfxYTDJ44nWIfQB2DFbXZn9U,762
4
+ solax_py_library/upload/api/service.py,sha256=ubFepgkG4pQwFAH_f1JJ-mU8ZZrNf9zUMyQ_wy9QN7s,774
6
5
  solax_py_library/upload/core/__init__.py,sha256=XMcnyDzCfsLwWaTAZt9-an7TuwYFqVNSt9W1_QRUrwA,89
7
6
  solax_py_library/upload/core/data_adapter/__init__.py,sha256=9CXepLZSOjZMfNjyYKAWQCWZt353kTL_0tFBlIeUIOo,116
8
7
  solax_py_library/upload/core/data_adapter/base.py,sha256=Va-SEe0eL3gobhNOnzHGkYBLIwf5RVawQdYRHHXg9g0,170
9
8
  solax_py_library/upload/core/data_adapter/csv.py,sha256=1muBW01YzX9-SJH1TQoiYavEm8CrHDNsREwVYIpl4QI,856
10
9
  solax_py_library/upload/core/upload_service/__init__.py,sha256=uA-UeH31rDNxByeZwvPhNFHPV_-J8JyCev8geuc---k,269
11
- solax_py_library/upload/core/upload_service/base.py,sha256=vl6QTxcx-QVFv0J1VN7HSgh4opouKfTpmJDkwQYzLVU,881
12
- solax_py_library/upload/core/upload_service/ftp.py,sha256=tz7sFMqWPbFZBiybuNy0OF3XyB0GAni-g19Qgd_RR-k,2651
10
+ solax_py_library/upload/core/upload_service/base.py,sha256=Mi1KFKy80-ssyJ1x3kgDxOeTpSM26cZI7YSW5UrAzs4,887
11
+ solax_py_library/upload/core/upload_service/ftp.py,sha256=uQda33G-Pyz80qUzCUSYrLSDD1Swod2FxsRM_dbufFE,2652
13
12
  solax_py_library/upload/errors/__init__.py,sha256=pVAcSOXvlsPJW3PjHLBOdbl7KvntiYmz7TP0XuRwZ_A,243
14
13
  solax_py_library/upload/errors/base.py,sha256=T01ZrZHF25PWgCrOv76Vhg26hds3I1Yy8Kl2LZRKOxo,258
15
14
  solax_py_library/upload/errors/upload_error.py,sha256=9pCZzR_y3-VkBWSs5w7mMHYFRJjzVosIcxi-5SO8N1U,409
16
15
  solax_py_library/upload/test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
17
- solax_py_library/upload/test/test_ftp.py,sha256=geXAU1LM4IIkQHEJ5w2yBVNOo5YN-h6dipIWgv5ukdE,1038
16
+ solax_py_library/upload/test/test_ftp.py,sha256=lxxorxh1LNRq51jQw9VhzGMQoWIoRPPbiOSrfc9DH7c,1282
18
17
  solax_py_library/upload/types/__init__.py,sha256=og9KBpYbcs36_S1izURj3vyHeuNOLJQrD9GpxK_JJaw,244
19
18
  solax_py_library/upload/types/client.py,sha256=IE4tw2KFRmZABptmujB7SXG2-61cW7X7qN9b2IrBF3Y,505
20
19
  solax_py_library/upload/types/ftp.py,sha256=APxneZ9m1OwImr3xZWnNkhxlh5Wy5rNCdegcVuOLyEM,644
21
- solax_py_library-1.0.0.3.dist-info/METADATA,sha256=NkPg-sQ3Kf60hSYf5lMpXF-sHQUcsu0YHlpq82mNN9Y,670
22
- solax_py_library-1.0.0.3.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
23
- solax_py_library-1.0.0.3.dist-info/RECORD,,
20
+ solax_py_library-1.0.0.4.dist-info/METADATA,sha256=sqL343P23w27ipxiBekhN0MlTcSbxUiYE4Lxdv00WWQ,670
21
+ solax_py_library-1.0.0.4.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
22
+ solax_py_library-1.0.0.4.dist-info/RECORD,,
solax_py_library/main.py DELETED
@@ -1,7 +0,0 @@
1
- import os.path
2
- import sys
3
-
4
- current_directory = os.path.dirname(os.path.abspath(__file__))
5
- parent_directory = os.path.abspath(os.path.join(current_directory, '..'))
6
- target_file_path = os.path.join(parent_directory, "dependency")
7
- sys.path.append(target_file_path)