eric-tools 1.3__tar.gz → 1.3.1__tar.gz

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.
Files changed (33) hide show
  1. eric_tools-1.3.1/PKG-INFO +70 -0
  2. eric_tools-1.3.1/README.md +52 -0
  3. {eric_tools-1.3 → eric_tools-1.3.1}/eric_tools/__init__.py +5 -14
  4. eric_tools-1.3.1/eric_tools.egg-info/PKG-INFO +70 -0
  5. {eric_tools-1.3 → eric_tools-1.3.1}/setup.py +1 -1
  6. eric_tools-1.3/PKG-INFO +0 -69
  7. eric_tools-1.3/README.md +0 -51
  8. eric_tools-1.3/eric_tools.egg-info/PKG-INFO +0 -69
  9. {eric_tools-1.3 → eric_tools-1.3.1}/LICENSE +0 -0
  10. {eric_tools-1.3 → eric_tools-1.3.1}/eric_tools/Abstract.py +0 -0
  11. {eric_tools-1.3 → eric_tools-1.3.1}/eric_tools/async_queue.py +0 -0
  12. {eric_tools-1.3 → eric_tools-1.3.1}/eric_tools/convert_json.py +0 -0
  13. {eric_tools-1.3 → eric_tools-1.3.1}/eric_tools/decorator.py +0 -0
  14. {eric_tools-1.3 → eric_tools-1.3.1}/eric_tools/downloader.py +0 -0
  15. {eric_tools-1.3 → eric_tools-1.3.1}/eric_tools/encryption_classmethod.py +0 -0
  16. {eric_tools-1.3 → eric_tools-1.3.1}/eric_tools/excel_generator.py +0 -0
  17. {eric_tools-1.3 → eric_tools-1.3.1}/eric_tools/exception_class.py +0 -0
  18. {eric_tools-1.3 → eric_tools-1.3.1}/eric_tools/ip.py +0 -0
  19. {eric_tools-1.3 → eric_tools-1.3.1}/eric_tools/jwt_encrypt.py +0 -0
  20. {eric_tools-1.3 → eric_tools-1.3.1}/eric_tools/logMixin.py +0 -0
  21. {eric_tools-1.3 → eric_tools-1.3.1}/eric_tools/logger.py +0 -0
  22. {eric_tools-1.3 → eric_tools-1.3.1}/eric_tools/nginx_log.py +0 -0
  23. {eric_tools-1.3 → eric_tools-1.3.1}/eric_tools/pgsql.py +0 -0
  24. {eric_tools-1.3 → eric_tools-1.3.1}/eric_tools/readconfig.py +0 -0
  25. {eric_tools-1.3 → eric_tools-1.3.1}/eric_tools/remove.py +0 -0
  26. {eric_tools-1.3 → eric_tools-1.3.1}/eric_tools/resize_image.py +0 -0
  27. {eric_tools-1.3 → eric_tools-1.3.1}/eric_tools/send_email.py +0 -0
  28. {eric_tools-1.3 → eric_tools-1.3.1}/eric_tools/sftp.py +0 -0
  29. {eric_tools-1.3 → eric_tools-1.3.1}/eric_tools.egg-info/SOURCES.txt +0 -0
  30. {eric_tools-1.3 → eric_tools-1.3.1}/eric_tools.egg-info/dependency_links.txt +0 -0
  31. {eric_tools-1.3 → eric_tools-1.3.1}/eric_tools.egg-info/requires.txt +0 -0
  32. {eric_tools-1.3 → eric_tools-1.3.1}/eric_tools.egg-info/top_level.txt +0 -0
  33. {eric_tools-1.3 → eric_tools-1.3.1}/setup.cfg +0 -0
@@ -0,0 +1,70 @@
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
+
17
+ # Tools
18
+ [![License](https://img.shields.io/:license-apache-blue.svg)](https://opensource.org/licenses/Apache-2.0)
19
+ ![latest 1.3](https://img.shields.io/badge/latest-1.3-green.svg?style=flat)
20
+ ![GitHub commits since latest release](https://img.shields.io/github/commits-since/eric-jxl/Tools/latest)
21
+
22
+
23
+ [New Year](https://eric-jxl.github.io/bak/index.html)
24
+
25
+ #### Project management of Python daily tools
26
+
27
+ ```shell
28
+ pip install eric_tools
29
+ ```
30
+
31
+
32
+
33
+ | 文件名 | 说明 |
34
+ | :----------------------------------------------------------: | :-----------------------------: |
35
+ | [encryption_classmethod.py ](https://github.com/eric-jxl/Tools/blob/62f538a1d34df869722c68e3ea5df222bdd1605e/eric_tools/Abstract.py) | HMAC+MD5加密签名算法 |
36
+ | [exception_class.py](https://github.com/eric-jxl/Tools/blob/62f538a1d34df869722c68e3ea5df222bdd1605e/eric_tools/exception_class.py) | 异常类 |
37
+ | [resize_image.py](https://github.com/eric-jxl/Tools/blob/62f538a1d34df869722c68e3ea5df222bdd1605e/eric_tools/resize_image.py) | 图片压缩 |
38
+ | [ip.py](https://github.com/eric-jxl/Tools/blob/62f538a1d34df869722c68e3ea5df222bdd1605e/eric_tools/ip.py) | ip地址定位API |
39
+ | [logger.py](https://github.com/eric-jxl/Tools/blob/62f538a1d34df869722c68e3ea5df222bdd1605e/eric_tools/logger.py) | 日志模块类和高级日志装饰器 |
40
+ | [remove.py](https://github.com/eric-jxl/Tools/blob/62f538a1d34df869722c68e3ea5df222bdd1605e/eric_tools/remove.py) | 删除文件 |
41
+ | [send_email.py](https://github.com/eric-jxl/Tools/blob/62f538a1d34df869722c68e3ea5df222bdd1605e/eric_tools/send_email.py) | 发送邮件 |
42
+ | [sftp.py](https://github.com/eric-jxl/Tools/blob/62f538a1d34df869722c68e3ea5df222bdd1605e/eric_tools/sftp.py) | ssh远程下载文件 |
43
+ | [pgsql.py](https://github.com/eric-jxl/Tools/blob/62f538a1d34df869722c68e3ea5df222bdd1605e/eric_tools/pgsql.py) | postgresql CRUD |
44
+ | [readconfig.py](https://github.com/eric-jxl/Tools/blob/62f538a1d34df869722c68e3ea5df222bdd1605e/eric_tools/readconfig.py) | 读取.ini配置文件 |
45
+ | [jwt_encrypt.py](https://github.com/eric-jxl/Tools/blob/62f538a1d34df869722c68e3ea5df222bdd1605e/eric_tools/jwt_encrypt.py) | 生成jwt Access Token 加密及解密 |
46
+ | [convert_json.py](https://github.com/eric-jxl/Tools/blob/62f538a1d34df869722c68e3ea5df222bdd1605e/eric_tools/convert_json.py) | 支持json和object之间转换 |
47
+ | [Abstract.py](https://github.com/eric-jxl/Tools/blob/62f538a1d34df869722c68e3ea5df222bdd1605e/eric_tools/Abstract.py) | 抽象类模型 |
48
+ | [decorator.py](https://github.com/eric-jxl/Tools/blob/62f538a1d34df869722c68e3ea5df222bdd1605e/eric_tools/decorator.py) | 惰性属性装饰器 |
49
+ | [async_queue.py](https://github.com/eric-jxl/Tools/blob/62f538a1d34df869722c68e3ea5df222bdd1605e/eric_tools/async_queue.py) | 异步队列 |
50
+ | [downloader.py](https://github.com/eric-jxl/Tools/blob/62f538a1d34df869722c68e3ea5df222bdd1605e/eric_tools/downloader.py) | 下载器 |
51
+ | [logMixIn.py](https://github.com/eric-jxl/Tools/blob/62f538a1d34df869722c68e3ea5df222bdd1605e/eric_tools/logMixIn.py) | 日志元类和高级日志装饰器 |
52
+ | [nginx_log.py](https://github.com/eric-jxl/Tools/blob/62f538a1d34df869722c68e3ea5df222bdd1605e/eric_tools/nginx_log.py) | nginx日志解析(默认access.log) |
53
+
54
+
55
+
56
+
57
+
58
+ >[!TIP]
59
+ >
60
+ > * async_queue.py 异步队列操作
61
+ >
62
+ > * downloader.py 下载器
63
+ >
64
+ > * logMixIn.py 日志元类和高级日志装饰器
65
+ >
66
+ > * nginx_log.py nginx日志解析(默认access.log)
67
+ >
68
+ > * [eric-tools==1.3](https://pypi.org/project/eric-tools/1.3/)
69
+
70
+
@@ -0,0 +1,52 @@
1
+ # Tools
2
+ [![License](https://img.shields.io/:license-apache-blue.svg)](https://opensource.org/licenses/Apache-2.0)
3
+ ![latest 1.3](https://img.shields.io/badge/latest-1.3-green.svg?style=flat)
4
+ ![GitHub commits since latest release](https://img.shields.io/github/commits-since/eric-jxl/Tools/latest)
5
+
6
+
7
+ [New Year](https://eric-jxl.github.io/bak/index.html)
8
+
9
+ #### Project management of Python daily tools
10
+
11
+ ```shell
12
+ pip install eric_tools
13
+ ```
14
+
15
+
16
+
17
+ | 文件名 | 说明 |
18
+ | :----------------------------------------------------------: | :-----------------------------: |
19
+ | [encryption_classmethod.py ](https://github.com/eric-jxl/Tools/blob/62f538a1d34df869722c68e3ea5df222bdd1605e/eric_tools/Abstract.py) | HMAC+MD5加密签名算法 |
20
+ | [exception_class.py](https://github.com/eric-jxl/Tools/blob/62f538a1d34df869722c68e3ea5df222bdd1605e/eric_tools/exception_class.py) | 异常类 |
21
+ | [resize_image.py](https://github.com/eric-jxl/Tools/blob/62f538a1d34df869722c68e3ea5df222bdd1605e/eric_tools/resize_image.py) | 图片压缩 |
22
+ | [ip.py](https://github.com/eric-jxl/Tools/blob/62f538a1d34df869722c68e3ea5df222bdd1605e/eric_tools/ip.py) | ip地址定位API |
23
+ | [logger.py](https://github.com/eric-jxl/Tools/blob/62f538a1d34df869722c68e3ea5df222bdd1605e/eric_tools/logger.py) | 日志模块类和高级日志装饰器 |
24
+ | [remove.py](https://github.com/eric-jxl/Tools/blob/62f538a1d34df869722c68e3ea5df222bdd1605e/eric_tools/remove.py) | 删除文件 |
25
+ | [send_email.py](https://github.com/eric-jxl/Tools/blob/62f538a1d34df869722c68e3ea5df222bdd1605e/eric_tools/send_email.py) | 发送邮件 |
26
+ | [sftp.py](https://github.com/eric-jxl/Tools/blob/62f538a1d34df869722c68e3ea5df222bdd1605e/eric_tools/sftp.py) | ssh远程下载文件 |
27
+ | [pgsql.py](https://github.com/eric-jxl/Tools/blob/62f538a1d34df869722c68e3ea5df222bdd1605e/eric_tools/pgsql.py) | postgresql CRUD |
28
+ | [readconfig.py](https://github.com/eric-jxl/Tools/blob/62f538a1d34df869722c68e3ea5df222bdd1605e/eric_tools/readconfig.py) | 读取.ini配置文件 |
29
+ | [jwt_encrypt.py](https://github.com/eric-jxl/Tools/blob/62f538a1d34df869722c68e3ea5df222bdd1605e/eric_tools/jwt_encrypt.py) | 生成jwt Access Token 加密及解密 |
30
+ | [convert_json.py](https://github.com/eric-jxl/Tools/blob/62f538a1d34df869722c68e3ea5df222bdd1605e/eric_tools/convert_json.py) | 支持json和object之间转换 |
31
+ | [Abstract.py](https://github.com/eric-jxl/Tools/blob/62f538a1d34df869722c68e3ea5df222bdd1605e/eric_tools/Abstract.py) | 抽象类模型 |
32
+ | [decorator.py](https://github.com/eric-jxl/Tools/blob/62f538a1d34df869722c68e3ea5df222bdd1605e/eric_tools/decorator.py) | 惰性属性装饰器 |
33
+ | [async_queue.py](https://github.com/eric-jxl/Tools/blob/62f538a1d34df869722c68e3ea5df222bdd1605e/eric_tools/async_queue.py) | 异步队列 |
34
+ | [downloader.py](https://github.com/eric-jxl/Tools/blob/62f538a1d34df869722c68e3ea5df222bdd1605e/eric_tools/downloader.py) | 下载器 |
35
+ | [logMixIn.py](https://github.com/eric-jxl/Tools/blob/62f538a1d34df869722c68e3ea5df222bdd1605e/eric_tools/logMixIn.py) | 日志元类和高级日志装饰器 |
36
+ | [nginx_log.py](https://github.com/eric-jxl/Tools/blob/62f538a1d34df869722c68e3ea5df222bdd1605e/eric_tools/nginx_log.py) | nginx日志解析(默认access.log) |
37
+
38
+
39
+
40
+
41
+
42
+ >[!TIP]
43
+ >
44
+ > * async_queue.py 异步队列操作
45
+ >
46
+ > * downloader.py 下载器
47
+ >
48
+ > * logMixIn.py 日志元类和高级日志装饰器
49
+ >
50
+ > * nginx_log.py nginx日志解析(默认access.log)
51
+ >
52
+ > * [eric-tools==1.3](https://pypi.org/project/eric-tools/1.3/)
@@ -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,70 @@
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
+
17
+ # Tools
18
+ [![License](https://img.shields.io/:license-apache-blue.svg)](https://opensource.org/licenses/Apache-2.0)
19
+ ![latest 1.3](https://img.shields.io/badge/latest-1.3-green.svg?style=flat)
20
+ ![GitHub commits since latest release](https://img.shields.io/github/commits-since/eric-jxl/Tools/latest)
21
+
22
+
23
+ [New Year](https://eric-jxl.github.io/bak/index.html)
24
+
25
+ #### Project management of Python daily tools
26
+
27
+ ```shell
28
+ pip install eric_tools
29
+ ```
30
+
31
+
32
+
33
+ | 文件名 | 说明 |
34
+ | :----------------------------------------------------------: | :-----------------------------: |
35
+ | [encryption_classmethod.py ](https://github.com/eric-jxl/Tools/blob/62f538a1d34df869722c68e3ea5df222bdd1605e/eric_tools/Abstract.py) | HMAC+MD5加密签名算法 |
36
+ | [exception_class.py](https://github.com/eric-jxl/Tools/blob/62f538a1d34df869722c68e3ea5df222bdd1605e/eric_tools/exception_class.py) | 异常类 |
37
+ | [resize_image.py](https://github.com/eric-jxl/Tools/blob/62f538a1d34df869722c68e3ea5df222bdd1605e/eric_tools/resize_image.py) | 图片压缩 |
38
+ | [ip.py](https://github.com/eric-jxl/Tools/blob/62f538a1d34df869722c68e3ea5df222bdd1605e/eric_tools/ip.py) | ip地址定位API |
39
+ | [logger.py](https://github.com/eric-jxl/Tools/blob/62f538a1d34df869722c68e3ea5df222bdd1605e/eric_tools/logger.py) | 日志模块类和高级日志装饰器 |
40
+ | [remove.py](https://github.com/eric-jxl/Tools/blob/62f538a1d34df869722c68e3ea5df222bdd1605e/eric_tools/remove.py) | 删除文件 |
41
+ | [send_email.py](https://github.com/eric-jxl/Tools/blob/62f538a1d34df869722c68e3ea5df222bdd1605e/eric_tools/send_email.py) | 发送邮件 |
42
+ | [sftp.py](https://github.com/eric-jxl/Tools/blob/62f538a1d34df869722c68e3ea5df222bdd1605e/eric_tools/sftp.py) | ssh远程下载文件 |
43
+ | [pgsql.py](https://github.com/eric-jxl/Tools/blob/62f538a1d34df869722c68e3ea5df222bdd1605e/eric_tools/pgsql.py) | postgresql CRUD |
44
+ | [readconfig.py](https://github.com/eric-jxl/Tools/blob/62f538a1d34df869722c68e3ea5df222bdd1605e/eric_tools/readconfig.py) | 读取.ini配置文件 |
45
+ | [jwt_encrypt.py](https://github.com/eric-jxl/Tools/blob/62f538a1d34df869722c68e3ea5df222bdd1605e/eric_tools/jwt_encrypt.py) | 生成jwt Access Token 加密及解密 |
46
+ | [convert_json.py](https://github.com/eric-jxl/Tools/blob/62f538a1d34df869722c68e3ea5df222bdd1605e/eric_tools/convert_json.py) | 支持json和object之间转换 |
47
+ | [Abstract.py](https://github.com/eric-jxl/Tools/blob/62f538a1d34df869722c68e3ea5df222bdd1605e/eric_tools/Abstract.py) | 抽象类模型 |
48
+ | [decorator.py](https://github.com/eric-jxl/Tools/blob/62f538a1d34df869722c68e3ea5df222bdd1605e/eric_tools/decorator.py) | 惰性属性装饰器 |
49
+ | [async_queue.py](https://github.com/eric-jxl/Tools/blob/62f538a1d34df869722c68e3ea5df222bdd1605e/eric_tools/async_queue.py) | 异步队列 |
50
+ | [downloader.py](https://github.com/eric-jxl/Tools/blob/62f538a1d34df869722c68e3ea5df222bdd1605e/eric_tools/downloader.py) | 下载器 |
51
+ | [logMixIn.py](https://github.com/eric-jxl/Tools/blob/62f538a1d34df869722c68e3ea5df222bdd1605e/eric_tools/logMixIn.py) | 日志元类和高级日志装饰器 |
52
+ | [nginx_log.py](https://github.com/eric-jxl/Tools/blob/62f538a1d34df869722c68e3ea5df222bdd1605e/eric_tools/nginx_log.py) | nginx日志解析(默认access.log) |
53
+
54
+
55
+
56
+
57
+
58
+ >[!TIP]
59
+ >
60
+ > * async_queue.py 异步队列操作
61
+ >
62
+ > * downloader.py 下载器
63
+ >
64
+ > * logMixIn.py 日志元类和高级日志装饰器
65
+ >
66
+ > * nginx_log.py nginx日志解析(默认access.log)
67
+ >
68
+ > * [eric-tools==1.3](https://pypi.org/project/eric-tools/1.3/)
69
+
70
+
@@ -7,7 +7,7 @@ with open("README.md", "r") as fh:
7
7
 
8
8
  setuptools.setup(
9
9
  name="eric_tools",
10
- version="1.3",
10
+ version="1.3.1",
11
11
  author="Eric",
12
12
  author_email="jxleric95@gmail.com",
13
13
  description="Python Daily Development Tools",
eric_tools-1.3/PKG-INFO DELETED
@@ -1,69 +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
-
17
- # Tools
18
- [![License](https://img.shields.io/:license-apache-blue.svg)](https://opensource.org/licenses/Apache-2.0)
19
- ![latest 1.3](https://img.shields.io/badge/latest-1.3-green.svg?style=flat)
20
- ![GitHub commits since latest release](https://img.shields.io/github/commits-since/eric-jxl/Tools/latest)
21
-
22
-
23
- [New Year](https://eric-jxl.github.io/bak/index.html)
24
-
25
-
26
- #### Project management of Python daily tools
27
- ```shell
28
- pip install eric_tools
29
- ```
30
-
31
- ```markdown
32
- encryption_classmethod.py Python HMAC+MD5加密签名算法
33
-
34
- exception_class.py 异常类
35
-
36
- resize_image.py 图片压缩
37
-
38
- ip.py ip地址定位API
39
-
40
- logger.py 日志模块类和高级日志装饰器
41
-
42
- remove.py 删除文件
43
-
44
- send_email.py 发送邮件
45
-
46
- sftp.py ssh远程下载文件
47
-
48
- pgsql.py 对postgresql 增删改查操作
49
-
50
- readconfig 针对读取配置文件
51
-
52
- jwt_encrypt 生成jwt Access Token 加密及解密
53
-
54
- convert_json 支持json和object之间转换
55
-
56
- Abstract.py 抽象类模型
57
-
58
- decorator.py 惰性属性装饰器
59
-
60
- **新增内容**
61
- async_queue.py 异步队列操作
62
- downloader.py 下载器
63
- logMixIn.py 日志元类和高级日志装饰器
64
- nginx_log.py nginx日志解析(默认access.log)
65
-
66
-
67
- ```
68
-
69
-
eric_tools-1.3/README.md DELETED
@@ -1,51 +0,0 @@
1
- # Tools
2
- [![License](https://img.shields.io/:license-apache-blue.svg)](https://opensource.org/licenses/Apache-2.0)
3
- ![latest 1.3](https://img.shields.io/badge/latest-1.3-green.svg?style=flat)
4
- ![GitHub commits since latest release](https://img.shields.io/github/commits-since/eric-jxl/Tools/latest)
5
-
6
-
7
- [New Year](https://eric-jxl.github.io/bak/index.html)
8
-
9
-
10
- #### Project management of Python daily tools
11
- ```shell
12
- pip install eric_tools
13
- ```
14
-
15
- ```markdown
16
- encryption_classmethod.py Python HMAC+MD5加密签名算法
17
-
18
- exception_class.py 异常类
19
-
20
- resize_image.py 图片压缩
21
-
22
- ip.py ip地址定位API
23
-
24
- logger.py 日志模块类和高级日志装饰器
25
-
26
- remove.py 删除文件
27
-
28
- send_email.py 发送邮件
29
-
30
- sftp.py ssh远程下载文件
31
-
32
- pgsql.py 对postgresql 增删改查操作
33
-
34
- readconfig 针对读取配置文件
35
-
36
- jwt_encrypt 生成jwt Access Token 加密及解密
37
-
38
- convert_json 支持json和object之间转换
39
-
40
- Abstract.py 抽象类模型
41
-
42
- decorator.py 惰性属性装饰器
43
-
44
- **新增内容**
45
- async_queue.py 异步队列操作
46
- downloader.py 下载器
47
- logMixIn.py 日志元类和高级日志装饰器
48
- nginx_log.py nginx日志解析(默认access.log)
49
-
50
-
51
- ```
@@ -1,69 +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
-
17
- # Tools
18
- [![License](https://img.shields.io/:license-apache-blue.svg)](https://opensource.org/licenses/Apache-2.0)
19
- ![latest 1.3](https://img.shields.io/badge/latest-1.3-green.svg?style=flat)
20
- ![GitHub commits since latest release](https://img.shields.io/github/commits-since/eric-jxl/Tools/latest)
21
-
22
-
23
- [New Year](https://eric-jxl.github.io/bak/index.html)
24
-
25
-
26
- #### Project management of Python daily tools
27
- ```shell
28
- pip install eric_tools
29
- ```
30
-
31
- ```markdown
32
- encryption_classmethod.py Python HMAC+MD5加密签名算法
33
-
34
- exception_class.py 异常类
35
-
36
- resize_image.py 图片压缩
37
-
38
- ip.py ip地址定位API
39
-
40
- logger.py 日志模块类和高级日志装饰器
41
-
42
- remove.py 删除文件
43
-
44
- send_email.py 发送邮件
45
-
46
- sftp.py ssh远程下载文件
47
-
48
- pgsql.py 对postgresql 增删改查操作
49
-
50
- readconfig 针对读取配置文件
51
-
52
- jwt_encrypt 生成jwt Access Token 加密及解密
53
-
54
- convert_json 支持json和object之间转换
55
-
56
- Abstract.py 抽象类模型
57
-
58
- decorator.py 惰性属性装饰器
59
-
60
- **新增内容**
61
- async_queue.py 异步队列操作
62
- downloader.py 下载器
63
- logMixIn.py 日志元类和高级日志装饰器
64
- nginx_log.py nginx日志解析(默认access.log)
65
-
66
-
67
- ```
68
-
69
-
File without changes
File without changes
File without changes
File without changes
File without changes