eric-tools 1.3.1__py3-none-any.whl → 1.3.2__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.
eric_tools/__init__.py CHANGED
@@ -12,8 +12,8 @@ from . import async_queue, downloader, logMixin, nginx_log, excel_generator
12
12
  name = 'Eric-Tools'
13
13
  __title__ = 'tools'
14
14
  __description__ = 'Python HTTP for Humans.'
15
- __version__ = "1.3.1"
15
+ __version__ = "1.3.2"
16
16
  __author__ = 'Eric'
17
17
  __doc__ = ["Python Daily Development Tools"]
18
18
  __url__ = "https://github.com/Eric-jxl/Tools"
19
- __license__ = "Apache"
19
+ __license__ = "MIT License"
@@ -0,0 +1,74 @@
1
+ Metadata-Version: 2.1
2
+ Name: eric-tools
3
+ Version: 1.3.2
4
+ Summary: Python Daily Development Tools
5
+ Home-page: https://github.com/Eric-jxl/Tools
6
+ Author: Eric
7
+ Author-email: jxleric95@gmail.com
8
+ License: UNKNOWN
9
+ Platform: UNKNOWN
10
+ Classifier: Programming Language :: Python :: 3
11
+ Classifier: License :: OSI Approved :: MIT License
12
+ Classifier: Operating System :: OS Independent
13
+ Requires-Python: >=3.0
14
+ Description-Content-Type: text/markdown
15
+ License-File: LICENSE
16
+ Requires-Dist: psycopg2
17
+ Requires-Dist: requests
18
+ Requires-Dist: paramiko
19
+ Requires-Dist: Pillow
20
+ Requires-Dist: xlsxwriter
21
+
22
+ # Tools
23
+ [![License](https://img.shields.io/:license-apache-blue.svg)](https://opensource.org/licenses/Apache-2.0)
24
+ ![latest 1.3.2](https://img.shields.io/badge/latest-1.3.2-green.svg?style=flat)
25
+ ![GitHub commits since latest release](https://img.shields.io/github/commits-since/eric-jxl/Tools/latest)
26
+
27
+
28
+ [Reids](https://eric-jxl.github.io/bak/index.html)
29
+
30
+ #### Project management of Python daily tools
31
+
32
+ ```shell
33
+ pip install eric_tools
34
+ ```
35
+
36
+
37
+
38
+ | 文件名 | 说明 |
39
+ | :----------------------------------------------------------------------------------------------------------------------------------: | :-----------------------------: |
40
+ | [encryption_classmethod.py ](https://github.com/eric-jxl/Tools/blob/62f538a1d34df869722c68e3ea5df222bdd1605e/eric_tools/Abstract.py) | HMAC+MD5加密签名算法 |
41
+ | [exception_class.py](https://github.com/eric-jxl/Tools/blob/62f538a1d34df869722c68e3ea5df222bdd1605e/eric_tools/exception_class.py) | 异常类 |
42
+ | [resize_image.py](https://github.com/eric-jxl/Tools/blob/62f538a1d34df869722c68e3ea5df222bdd1605e/eric_tools/resize_image.py) | 图片压缩 |
43
+ | [ip.py](https://github.com/eric-jxl/Tools/blob/62f538a1d34df869722c68e3ea5df222bdd1605e/eric_tools/ip.py) | ip地址定位API |
44
+ | [logger.py](https://github.com/eric-jxl/Tools/blob/62f538a1d34df869722c68e3ea5df222bdd1605e/eric_tools/logger.py) | 日志模块类和高级日志装饰器 |
45
+ | [remove.py](https://github.com/eric-jxl/Tools/blob/62f538a1d34df869722c68e3ea5df222bdd1605e/eric_tools/remove.py) | 删除文件 |
46
+ | [send_email.py](https://github.com/eric-jxl/Tools/blob/62f538a1d34df869722c68e3ea5df222bdd1605e/eric_tools/send_email.py) | 发送邮件 |
47
+ | [sftp.py](https://github.com/eric-jxl/Tools/blob/62f538a1d34df869722c68e3ea5df222bdd1605e/eric_tools/sftp.py) | ssh远程下载文件 |
48
+ | [pgsql.py](https://github.com/eric-jxl/Tools/blob/62f538a1d34df869722c68e3ea5df222bdd1605e/eric_tools/pgsql.py) | postgresql CRUD |
49
+ | [readconfig.py](https://github.com/eric-jxl/Tools/blob/62f538a1d34df869722c68e3ea5df222bdd1605e/eric_tools/readconfig.py) | 读取.ini配置文件 |
50
+ | [jwt_encrypt.py](https://github.com/eric-jxl/Tools/blob/62f538a1d34df869722c68e3ea5df222bdd1605e/eric_tools/jwt_encrypt.py) | 生成jwt Access Token 加密及解密 |
51
+ | [convert_json.py](https://github.com/eric-jxl/Tools/blob/62f538a1d34df869722c68e3ea5df222bdd1605e/eric_tools/convert_json.py) | 支持json和object之间转换 |
52
+ | [Abstract.py](https://github.com/eric-jxl/Tools/blob/62f538a1d34df869722c68e3ea5df222bdd1605e/eric_tools/Abstract.py) | 抽象类模型 |
53
+ | [decorator.py](https://github.com/eric-jxl/Tools/blob/62f538a1d34df869722c68e3ea5df222bdd1605e/eric_tools/decorator.py) | 惰性属性装饰器 |
54
+ | [async_queue.py](https://github.com/eric-jxl/Tools/blob/62f538a1d34df869722c68e3ea5df222bdd1605e/eric_tools/async_queue.py) | 异步队列 |
55
+ | [downloader.py](https://github.com/eric-jxl/Tools/blob/62f538a1d34df869722c68e3ea5df222bdd1605e/eric_tools/downloader.py) | 下载器 |
56
+ | [logMixin.py](https://github.com/eric-jxl/Tools/blob/62f538a1d34df869722c68e3ea5df222bdd1605e/eric_tools/logMixin.py) | 日志元类和高级日志装饰器 |
57
+ | [nginx_log.py](https://github.com/eric-jxl/Tools/blob/62f538a1d34df869722c68e3ea5df222bdd1605e/eric_tools/nginx_log.py) | nginx日志解析(默认access.log) |
58
+
59
+
60
+
61
+
62
+
63
+ >[!TIP]
64
+ >
65
+ > * async_queue.py 异步队列操作
66
+ >
67
+ > * downloader.py 下载器
68
+ >
69
+ > * logMixIn.py 日志元类和高级日志装饰器
70
+ >
71
+ > * nginx_log.py nginx日志解析(默认access.log)
72
+ >
73
+
74
+
@@ -1,5 +1,5 @@
1
1
  eric_tools/Abstract.py,sha256=8HpTno0VnviyYaRvc2whTUfUJefg2tZhgR94RU9f-FQ,1619
2
- eric_tools/__init__.py,sha256=dxXV9wxeBt0SjEd2c5Hs1E49_NRL9eq37UdTF8UeAE4,590
2
+ eric_tools/__init__.py,sha256=BChZ-e-ct65u4Jf1WCUW7LAxFNW1PI1tpTlWLl86P1s,595
3
3
  eric_tools/async_queue.py,sha256=-wiImRYCWcNBbCAMLXFTjKkPrK94mFL836-f_wvUewA,1122
4
4
  eric_tools/convert_json.py,sha256=Qcs8VQGB7cBkwAiqH1Xd9vbagw19sA2bE9s4EJFA33E,638
5
5
  eric_tools/decorator.py,sha256=DEN_-TSvtAo0TWvs_7-HbeMQCqdgVAkxz2K5fekYFbM,1887
@@ -18,8 +18,8 @@ eric_tools/remove.py,sha256=RtnNFZzvRc-YNKdDb0h9zVZAPXyDSM1nVcUHTFEjQGk,1163
18
18
  eric_tools/resize_image.py,sha256=A2OBCF7XfnQesWIYTs2W1jmZDslftagPxcc-Fijmyoo,2855
19
19
  eric_tools/send_email.py,sha256=kWVYG5O5hdV4Rk8aTxwkEIkzEXSEw7Hu_aAAQKIjBws,1230
20
20
  eric_tools/sftp.py,sha256=UUBmy4R-7Pezo9haA8JufDyJRcxZg2pKquX0KJIDZIw,423
21
- eric_tools-1.3.1.dist-info/LICENSE,sha256=wURoCIWynkcZ4qUfCqtUOaHgLZgGkrWq8IbK4Scn8os,10849
22
- eric_tools-1.3.1.dist-info/METADATA,sha256=WZL17YBGD_kn0EHsse2YQ_LypIg4J0rX1Gi__iUoNQg,4477
23
- eric_tools-1.3.1.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
24
- eric_tools-1.3.1.dist-info/top_level.txt,sha256=mtO1Tce6qLPcuy4F8bXHByXuIb2LSAEkQEqeQ3UZpzU,11
25
- eric_tools-1.3.1.dist-info/RECORD,,
21
+ eric_tools-1.3.2.dist-info/LICENSE,sha256=wURoCIWynkcZ4qUfCqtUOaHgLZgGkrWq8IbK4Scn8os,10849
22
+ eric_tools-1.3.2.dist-info/METADATA,sha256=-Wx_b9UYqC85D2s_SDitSfB32g80inPlFdedsu7MDww,4789
23
+ eric_tools-1.3.2.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
24
+ eric_tools-1.3.2.dist-info/top_level.txt,sha256=mtO1Tce6qLPcuy4F8bXHByXuIb2LSAEkQEqeQ3UZpzU,11
25
+ eric_tools-1.3.2.dist-info/RECORD,,
@@ -1,75 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: eric-tools
3
- Version: 1.3.1
4
- Summary: Python Daily Development Tools
5
- Home-page: https://github.com/Eric-jxl/Tools
6
- Author: Eric
7
- Author-email: jxleric95@gmail.com
8
- License: UNKNOWN
9
- Platform: UNKNOWN
10
- Classifier: Programming Language :: Python :: 3
11
- Classifier: License :: OSI Approved :: MIT License
12
- Classifier: Operating System :: OS Independent
13
- Requires-Python: >=3.0
14
- Description-Content-Type: text/markdown
15
- License-File: LICENSE
16
- Requires-Dist: psycopg2
17
- Requires-Dist: requests
18
- Requires-Dist: paramiko
19
- Requires-Dist: Pillow
20
- Requires-Dist: xlsxwriter
21
-
22
- # Tools
23
- [![License](https://img.shields.io/:license-apache-blue.svg)](https://opensource.org/licenses/Apache-2.0)
24
- ![latest 1.3](https://img.shields.io/badge/latest-1.3-green.svg?style=flat)
25
- ![GitHub commits since latest release](https://img.shields.io/github/commits-since/eric-jxl/Tools/latest)
26
-
27
-
28
- [New Year](https://eric-jxl.github.io/bak/index.html)
29
-
30
- #### Project management of Python daily tools
31
-
32
- ```shell
33
- pip install eric_tools
34
- ```
35
-
36
-
37
-
38
- | 文件名 | 说明 |
39
- | :----------------------------------------------------------: | :-----------------------------: |
40
- | [encryption_classmethod.py ](https://github.com/eric-jxl/Tools/blob/62f538a1d34df869722c68e3ea5df222bdd1605e/eric_tools/Abstract.py) | HMAC+MD5加密签名算法 |
41
- | [exception_class.py](https://github.com/eric-jxl/Tools/blob/62f538a1d34df869722c68e3ea5df222bdd1605e/eric_tools/exception_class.py) | 异常类 |
42
- | [resize_image.py](https://github.com/eric-jxl/Tools/blob/62f538a1d34df869722c68e3ea5df222bdd1605e/eric_tools/resize_image.py) | 图片压缩 |
43
- | [ip.py](https://github.com/eric-jxl/Tools/blob/62f538a1d34df869722c68e3ea5df222bdd1605e/eric_tools/ip.py) | ip地址定位API |
44
- | [logger.py](https://github.com/eric-jxl/Tools/blob/62f538a1d34df869722c68e3ea5df222bdd1605e/eric_tools/logger.py) | 日志模块类和高级日志装饰器 |
45
- | [remove.py](https://github.com/eric-jxl/Tools/blob/62f538a1d34df869722c68e3ea5df222bdd1605e/eric_tools/remove.py) | 删除文件 |
46
- | [send_email.py](https://github.com/eric-jxl/Tools/blob/62f538a1d34df869722c68e3ea5df222bdd1605e/eric_tools/send_email.py) | 发送邮件 |
47
- | [sftp.py](https://github.com/eric-jxl/Tools/blob/62f538a1d34df869722c68e3ea5df222bdd1605e/eric_tools/sftp.py) | ssh远程下载文件 |
48
- | [pgsql.py](https://github.com/eric-jxl/Tools/blob/62f538a1d34df869722c68e3ea5df222bdd1605e/eric_tools/pgsql.py) | postgresql CRUD |
49
- | [readconfig.py](https://github.com/eric-jxl/Tools/blob/62f538a1d34df869722c68e3ea5df222bdd1605e/eric_tools/readconfig.py) | 读取.ini配置文件 |
50
- | [jwt_encrypt.py](https://github.com/eric-jxl/Tools/blob/62f538a1d34df869722c68e3ea5df222bdd1605e/eric_tools/jwt_encrypt.py) | 生成jwt Access Token 加密及解密 |
51
- | [convert_json.py](https://github.com/eric-jxl/Tools/blob/62f538a1d34df869722c68e3ea5df222bdd1605e/eric_tools/convert_json.py) | 支持json和object之间转换 |
52
- | [Abstract.py](https://github.com/eric-jxl/Tools/blob/62f538a1d34df869722c68e3ea5df222bdd1605e/eric_tools/Abstract.py) | 抽象类模型 |
53
- | [decorator.py](https://github.com/eric-jxl/Tools/blob/62f538a1d34df869722c68e3ea5df222bdd1605e/eric_tools/decorator.py) | 惰性属性装饰器 |
54
- | [async_queue.py](https://github.com/eric-jxl/Tools/blob/62f538a1d34df869722c68e3ea5df222bdd1605e/eric_tools/async_queue.py) | 异步队列 |
55
- | [downloader.py](https://github.com/eric-jxl/Tools/blob/62f538a1d34df869722c68e3ea5df222bdd1605e/eric_tools/downloader.py) | 下载器 |
56
- | [logMixIn.py](https://github.com/eric-jxl/Tools/blob/62f538a1d34df869722c68e3ea5df222bdd1605e/eric_tools/logMixIn.py) | 日志元类和高级日志装饰器 |
57
- | [nginx_log.py](https://github.com/eric-jxl/Tools/blob/62f538a1d34df869722c68e3ea5df222bdd1605e/eric_tools/nginx_log.py) | nginx日志解析(默认access.log) |
58
-
59
-
60
-
61
-
62
-
63
- >[!TIP]
64
- >
65
- > * async_queue.py 异步队列操作
66
- >
67
- > * downloader.py 下载器
68
- >
69
- > * logMixIn.py 日志元类和高级日志装饰器
70
- >
71
- > * nginx_log.py nginx日志解析(默认access.log)
72
- >
73
- > * [eric-tools==1.3](https://pypi.org/project/eric-tools/1.3/)
74
-
75
-