xtn-tools-pro 1.0.0.0.0__tar.gz → 1.0.0.0.2__tar.gz

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: xtn-tools-pro
3
- Version: 1.0.0.0.0
3
+ Version: 1.0.0.0.2
4
4
  Summary: xtn 开发工具
5
5
  Author: xtn
6
6
  Author-email: czw011122@163.com
@@ -15,7 +15,7 @@ with open("README.md", "r") as f:
15
15
 
16
16
  setuptools.setup(
17
17
  name="xtn-tools-pro", # 模块名称
18
- version="1.0.0.0.0", # 版本
18
+ version="1.0.0.0.2", # 版本
19
19
  author="xtn", # 作者
20
20
  author_email="czw011122@163.com", # 作者邮箱
21
21
  description="xtn 开发工具", # 模块简介
@@ -59,7 +59,6 @@ def get_file_md5_16(file_path):
59
59
  return result[8:24]
60
60
 
61
61
 
62
-
63
62
  def get_str_to_json(str_json):
64
63
  """
65
64
  字符串类型的json格式 转 json
@@ -101,6 +100,9 @@ def get_calculate_total_page(total, limit):
101
100
  return total_pages
102
101
 
103
102
 
103
+
104
+
105
+
106
+
104
107
  if __name__ == '__main__':
105
108
  pass
106
-
@@ -0,0 +1,41 @@
1
+ #!/usr/bin/env python
2
+ # -*- coding: utf-8 -*-
3
+
4
+ # 说明:
5
+ # 文件相关的工具
6
+ # History:
7
+ # Date Author Version Modification
8
+ # --------------------------------------------------------------------------------------------------
9
+ # 2024/4/19 xiatn V00.01.000 新建
10
+ # --------------------------------------------------------------------------------------------------
11
+ import os, re
12
+
13
+
14
+ def get_file_extension(file_name):
15
+ """
16
+ 根据文件名获取文件扩展名/后缀名
17
+ :param file_name: 文件名称
18
+ :return:
19
+ """
20
+ _, file_extension = os.path.splitext(file_name)
21
+ return file_extension
22
+
23
+
24
+ def get_file_check_filename(file_name):
25
+ """
26
+ 传入文件名返回一个合法的文件名 会替换掉一些特殊符号 常用于爬虫写文件时文件名中带有特殊符号的情况...
27
+ :param filename: 文件名
28
+ :return:
29
+ """
30
+ file_extension = get_file_extension(file_name)
31
+ # 删除非法字符
32
+ sanitized_filename = re.sub(r'[\/:*?"<>|]', '', file_name)
33
+ max_length = 255 # 操作系统限制文件名的最大长度为255个
34
+ sanitized_filename = sanitized_filename[:max_length]
35
+ return sanitized_filename
36
+
37
+
38
+ if __name__ == '__main__':
39
+ pass
40
+ print(get_file_extension('file/2024-04-19/BOSCH GEX 125-1A/125-1AE砂磨机操作说明书:[1]_jingyan.txt'))
41
+ print(get_check_filename('file/2024-04-19/BOSCH GEX 125-1A/125-1AE砂磨机操作说明书:[1]_jingyan.txt'))
@@ -2,7 +2,7 @@
2
2
  # -*- coding: utf-8 -*-
3
3
 
4
4
  # 说明:
5
- # 程序说明xxxxxxxxxxxxxxxxxxx
5
+ # 时间相关的工具
6
6
  # History:
7
7
  # Date Author Version Modification
8
8
  # --------------------------------------------------------------------------------------------------
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: xtn-tools-pro
3
- Version: 1.0.0.0.0
3
+ Version: 1.0.0.0.2
4
4
  Summary: xtn 开发工具
5
5
  Author: xtn
6
6
  Author-email: czw011122@163.com
@@ -3,6 +3,7 @@ README.md
3
3
  setup.py
4
4
  xtn_tools_pro/__init__.py
5
5
  xtn_tools_pro/tools.py
6
+ xtn_tools_pro/tools_flie.py
6
7
  xtn_tools_pro/tools_time.py
7
8
  xtn_tools_pro.egg-info/PKG-INFO
8
9
  xtn_tools_pro.egg-info/SOURCES.txt