eric-tools 1.3__py3-none-any.whl → 1.3.1__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
@@ -4,24 +4,15 @@
4
4
  @Time : 2020-11-30 17:31
5
5
  @IDE : PyCharm
6
6
  '''
7
- import decorator
8
- import Abstract
9
- import convert_json
10
- import jwt_encrypt
11
- import send_email
12
- import readconfig
13
- import sftp
14
- import pgsql
15
- import encryption_classmethod
16
- import ip
17
- import logger
18
- import resize_image
19
- import exception_class
7
+ from . import decorator, Abstract, convert_json, jwt_encrypt, send_email, readconfig, sftp
8
+ from . import ip, logger, resize_image, exception_class, pgsql, encryption_classmethod
9
+ from . import async_queue, downloader, logMixin, nginx_log, excel_generator
10
+
20
11
 
21
12
  name = 'Eric-Tools'
22
13
  __title__ = 'tools'
23
14
  __description__ = 'Python HTTP for Humans.'
24
- __version__ = "1.3"
15
+ __version__ = "1.3.1"
25
16
  __author__ = 'Eric'
26
17
  __doc__ = ["Python Daily Development Tools"]
27
18
  __url__ = "https://github.com/Eric-jxl/Tools"
@@ -0,0 +1,75 @@
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
+
@@ -1,5 +1,5 @@
1
1
  eric_tools/Abstract.py,sha256=8HpTno0VnviyYaRvc2whTUfUJefg2tZhgR94RU9f-FQ,1619
2
- eric_tools/__init__.py,sha256=Yu299wLoY0OGQwyjMKhG5XrAlHd7OxXUlRh9BAIeX30,563
2
+ eric_tools/__init__.py,sha256=dxXV9wxeBt0SjEd2c5Hs1E49_NRL9eq37UdTF8UeAE4,590
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.dist-info/LICENSE,sha256=wURoCIWynkcZ4qUfCqtUOaHgLZgGkrWq8IbK4Scn8os,10849
22
- eric_tools-1.3.dist-info/METADATA,sha256=aMrFBezKbgF4j6vvMBJXgreG309vYtLorrJRcacHknA,1868
23
- eric_tools-1.3.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
24
- eric_tools-1.3.dist-info/top_level.txt,sha256=mtO1Tce6qLPcuy4F8bXHByXuIb2LSAEkQEqeQ3UZpzU,11
25
- eric_tools-1.3.dist-info/RECORD,,
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,,
@@ -1,74 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: eric-tools
3
- Version: 1.3
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
-
31
- #### Project management of Python daily tools
32
- ```shell
33
- pip install eric_tools
34
- ```
35
-
36
- ```markdown
37
- encryption_classmethod.py Python HMAC+MD5加密签名算法
38
-
39
- exception_class.py 异常类
40
-
41
- resize_image.py 图片压缩
42
-
43
- ip.py ip地址定位API
44
-
45
- logger.py 日志模块类和高级日志装饰器
46
-
47
- remove.py 删除文件
48
-
49
- send_email.py 发送邮件
50
-
51
- sftp.py ssh远程下载文件
52
-
53
- pgsql.py 对postgresql 增删改查操作
54
-
55
- readconfig 针对读取配置文件
56
-
57
- jwt_encrypt 生成jwt Access Token 加密及解密
58
-
59
- convert_json 支持json和object之间转换
60
-
61
- Abstract.py 抽象类模型
62
-
63
- decorator.py 惰性属性装饰器
64
-
65
- **新增内容**
66
- async_queue.py 异步队列操作
67
- downloader.py 下载器
68
- logMixIn.py 日志元类和高级日志装饰器
69
- nginx_log.py nginx日志解析(默认access.log)
70
-
71
-
72
- ```
73
-
74
-