solax-py-library 0.1.0.7__py3-none-any.whl → 0.1.0.9__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.
@@ -1,17 +1,24 @@
1
1
  import csv
2
2
  import tempfile
3
+ from typing import Any, Union, List, Dict
3
4
 
4
5
  from solax_py_library.upload.core.data_adapter.base import BaseDataAdapter
5
6
 
6
7
 
7
8
  class CSVDataAdapter(BaseDataAdapter):
8
9
  @classmethod
9
- def parse_data(cls, data):
10
+ def parse_data(cls, data: Union[List[List[Any]], List[Dict[str, Any]]]):
10
11
  with tempfile.NamedTemporaryFile(
11
12
  delete=False, mode="w", newline="", encoding="utf8"
12
13
  ) as temp_file:
13
- writer = csv.writer(temp_file)
14
- writer.writerows(data)
14
+ if isinstance(data[0], list):
15
+ writer = csv.writer(temp_file)
16
+ writer.writerows(data)
17
+ else:
18
+ headers = list(data[0].keys())
19
+ writer = csv.DictWriter(temp_file, fieldnames=headers)
20
+ writer.writeheader()
21
+ writer.writerows(data)
15
22
 
16
23
  temp_file_path = temp_file.name
17
24
  temp_file.seek(0)
@@ -14,8 +14,8 @@ class BaseUploadService(metaclass=ABCMeta):
14
14
  def connect(self):
15
15
  ...
16
16
 
17
- def upload(self, data):
18
- upload_data = self._parse(data)
17
+ def upload(self, data: UploadData):
18
+ upload_data = self._parse(data.build_data())
19
19
  return self._upload(upload_data)
20
20
 
21
21
  @abstractmethod
@@ -54,14 +54,13 @@ class FTPUploadService(BaseUploadService):
54
54
  self._is_connect = False
55
55
  print("Connection closed.")
56
56
 
57
- def _parse(self, upload_data: UploadData) -> FTPParsedData:
58
- data: FTPData = upload_data.data
59
- if data.file_type == FTPFileType.CSV:
60
- parsed_data = CSVDataAdapter.parse_data(data.data)
57
+ def _parse(self, upload_data: FTPData) -> FTPParsedData:
58
+ if upload_data.file_type == FTPFileType.CSV:
59
+ parsed_data = CSVDataAdapter.parse_data(upload_data.data)
61
60
  else:
62
61
  raise NotImplementedError
63
62
  return FTPParsedData(
64
- file_name=data.build_full_path(self.remote_path), data=parsed_data
63
+ file_name=upload_data.build_full_path(self.remote_path), data=parsed_data
65
64
  )
66
65
 
67
66
  def _upload(self, data: FTPParsedData):
@@ -9,7 +9,7 @@ class FTPTest(unittest.TestCase):
9
9
  def test_ftp_upload(self):
10
10
  ftp_config = {
11
11
  "host": "10.1.31.181", # 测试host
12
- "username": "solax",
12
+ "user": "solax",
13
13
  "password": "sly402",
14
14
  "remote_path": "/xixi",
15
15
  }
@@ -17,10 +17,11 @@ class FTPTest(unittest.TestCase):
17
17
  upload_type=UploadType.FTP,
18
18
  configuration=ftp_config,
19
19
  upload_data=UploadData(
20
- ftp_data=FTPData(
20
+ upload_type=UploadType.FTP,
21
+ data=dict(
21
22
  file_type=FTPFileType.CSV,
22
23
  file_name="new_file.csv",
23
- data=[["curry", 37, "男"], ["james", 40, "男"], ["lily", 16, "女"]],
24
+ data=[{'EMS1000序列号': 'XMG11A011L', 'EMS1000本地时间': '2025-02-11 15:39:10', 'EMS1000版本号': 'V007.11.1', '电站所在国家和地区': None, '电站所在当前时区': None, '电站系统类型': None}],
24
25
  ),
25
26
  ),
26
27
  )
@@ -10,5 +10,10 @@ class UploadType(str, Enum):
10
10
 
11
11
 
12
12
  class UploadData(BaseModel):
13
- data: Optional[Union[FTPData]]
13
+ data: Optional[Union[dict, FTPData]]
14
14
  upload_type: Optional[UploadType]
15
+
16
+ def build_data(self):
17
+ dict_obj_data = self.data if isinstance(self.data, dict) else self.data.dict()
18
+ if self.upload_type == UploadType.FTP:
19
+ return FTPData(**dict_obj_data)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: solax-py-library
3
- Version: 0.1.0.7
3
+ Version: 0.1.0.9
4
4
  Summary: some common tool
5
5
  Author: shenlvyu
6
6
  Author-email: 13296718439@163.com
@@ -5,18 +5,18 @@ solax_py_library/upload/api/service.py,sha256=RJ8oqIqsVA8d978UDGgNfxYTDJ44nWIfQB
5
5
  solax_py_library/upload/core/__init__.py,sha256=XMcnyDzCfsLwWaTAZt9-an7TuwYFqVNSt9W1_QRUrwA,89
6
6
  solax_py_library/upload/core/data_adapter/__init__.py,sha256=9CXepLZSOjZMfNjyYKAWQCWZt353kTL_0tFBlIeUIOo,116
7
7
  solax_py_library/upload/core/data_adapter/base.py,sha256=Va-SEe0eL3gobhNOnzHGkYBLIwf5RVawQdYRHHXg9g0,170
8
- solax_py_library/upload/core/data_adapter/csv.py,sha256=LR-45i1Guihrm_eN2Li9kNoutTAsiPeWQNTUz2HJmok,518
8
+ solax_py_library/upload/core/data_adapter/csv.py,sha256=2hAtDdU2ibzg6hRcZgZiRVI9JAOEhzGzXlDcWmDYvqI,868
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=T6h0ws_bCVRL2AeIXmDpbfPWZzJnUGh5gJKTZoF1CSw,856
11
- solax_py_library/upload/core/upload_service/ftp.py,sha256=ll7Q-KmWQVFtM9XFyVDNoY32Szx5CvATHe-KKOtDUiw,2455
10
+ solax_py_library/upload/core/upload_service/base.py,sha256=vl6QTxcx-QVFv0J1VN7HSgh4opouKfTpmJDkwQYzLVU,881
11
+ solax_py_library/upload/core/upload_service/ftp.py,sha256=EyqaCn6b24rOKDbf-DqZQirq5JuDaVuApsb48RADsfk,2432
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
15
15
  solax_py_library/upload/test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
16
- solax_py_library/upload/test/test_ftp.py,sha256=mJcYdroFLpI82t2-8IVGXNYGWB9TVJK723uaQFcTFr4,856
16
+ solax_py_library/upload/test/test_ftp.py,sha256=geXAU1LM4IIkQHEJ5w2yBVNOo5YN-h6dipIWgv5ukdE,1038
17
17
  solax_py_library/upload/types/__init__.py,sha256=og9KBpYbcs36_S1izURj3vyHeuNOLJQrD9GpxK_JJaw,244
18
- solax_py_library/upload/types/client.py,sha256=PEUG7pulvwEb6NS6yiu5yYHowNI8UrUDygawfAkPIlo,294
18
+ solax_py_library/upload/types/client.py,sha256=IE4tw2KFRmZABptmujB7SXG2-61cW7X7qN9b2IrBF3Y,505
19
19
  solax_py_library/upload/types/ftp.py,sha256=RTREbHwvGz6hrz_VUaw8Rx5utB4LQisytcsI2jGT6zc,533
20
- solax_py_library-0.1.0.7.dist-info/METADATA,sha256=hXXqrAI6oTOHqQcvRL1LWhcjKROx4zIbwdWCXdQJNVo,670
21
- solax_py_library-0.1.0.7.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
22
- solax_py_library-0.1.0.7.dist-info/RECORD,,
20
+ solax_py_library-0.1.0.9.dist-info/METADATA,sha256=DrrCk80KrBA73sxFhZhro1k3X-rUlYFl7kAzeBilBww,670
21
+ solax_py_library-0.1.0.9.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
22
+ solax_py_library-0.1.0.9.dist-info/RECORD,,