ezKit 1.11.17__tar.gz → 1.12.0__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 (28) hide show
  1. {ezkit-1.11.17/ezKit.egg-info → ezkit-1.12.0}/PKG-INFO +4 -3
  2. {ezkit-1.11.17 → ezkit-1.12.0}/ezKit/dockerhub.py +3 -3
  3. {ezkit-1.11.17 → ezkit-1.12.0}/ezKit/xftp.py +1 -1
  4. {ezkit-1.11.17 → ezkit-1.12.0/ezKit.egg-info}/PKG-INFO +4 -3
  5. {ezkit-1.11.17 → ezkit-1.12.0}/setup.py +2 -2
  6. {ezkit-1.11.17 → ezkit-1.12.0}/LICENSE +0 -0
  7. {ezkit-1.11.17 → ezkit-1.12.0}/MANIFEST.in +0 -0
  8. {ezkit-1.11.17 → ezkit-1.12.0}/README.md +0 -0
  9. {ezkit-1.11.17 → ezkit-1.12.0}/ezKit/__init__.py +0 -0
  10. {ezkit-1.11.17 → ezkit-1.12.0}/ezKit/_file.py +0 -0
  11. {ezkit-1.11.17 → ezkit-1.12.0}/ezKit/bottle.py +0 -0
  12. {ezkit-1.11.17 → ezkit-1.12.0}/ezKit/bottle_extensions.py +0 -0
  13. {ezkit-1.11.17 → ezkit-1.12.0}/ezKit/cipher.py +0 -0
  14. {ezkit-1.11.17 → ezkit-1.12.0}/ezKit/database.py +0 -0
  15. {ezkit-1.11.17 → ezkit-1.12.0}/ezKit/http.py +0 -0
  16. {ezkit-1.11.17 → ezkit-1.12.0}/ezKit/markdown_to_html.template +0 -0
  17. {ezkit-1.11.17 → ezkit-1.12.0}/ezKit/mongo.py +0 -0
  18. {ezkit-1.11.17 → ezkit-1.12.0}/ezKit/qywx.py +0 -0
  19. {ezkit-1.11.17 → ezkit-1.12.0}/ezKit/redis.py +0 -0
  20. {ezkit-1.11.17 → ezkit-1.12.0}/ezKit/sendemail.py +0 -0
  21. {ezkit-1.11.17 → ezkit-1.12.0}/ezKit/token.py +0 -0
  22. {ezkit-1.11.17 → ezkit-1.12.0}/ezKit/utils.py +0 -0
  23. {ezkit-1.11.17 → ezkit-1.12.0}/ezKit/zabbix.py +0 -0
  24. {ezkit-1.11.17 → ezkit-1.12.0}/ezKit.egg-info/SOURCES.txt +0 -0
  25. {ezkit-1.11.17 → ezkit-1.12.0}/ezKit.egg-info/dependency_links.txt +0 -0
  26. {ezkit-1.11.17 → ezkit-1.12.0}/ezKit.egg-info/requires.txt +0 -0
  27. {ezkit-1.11.17 → ezkit-1.12.0}/ezKit.egg-info/top_level.txt +0 -0
  28. {ezkit-1.11.17 → ezkit-1.12.0}/setup.cfg +0 -0
@@ -1,14 +1,15 @@
1
- Metadata-Version: 2.2
1
+ Metadata-Version: 2.4
2
2
  Name: ezKit
3
- Version: 1.11.17
3
+ Version: 1.12.0
4
4
  Summary: Easy Kit
5
5
  Author: septvean
6
6
  Author-email: septvean@gmail.com
7
- Requires-Python: >=3.11
7
+ Requires-Python: >=3.12
8
8
  License-File: LICENSE
9
9
  Requires-Dist: loguru>=0.7
10
10
  Dynamic: author
11
11
  Dynamic: author-email
12
+ Dynamic: license-file
12
13
  Dynamic: requires-dist
13
14
  Dynamic: requires-python
14
15
  Dynamic: summary
@@ -9,7 +9,7 @@ def get_latest_tags(url: str, limit: int = 20, proxies: dict | None = None) -> l
9
9
 
10
10
  try:
11
11
 
12
- logger.info(f"{info} [begin]")
12
+ logger.info(f"{info} [开始]")
13
13
 
14
14
  # url = "https://hub.docker.com/v2/repositories/library/postgres/tags"
15
15
 
@@ -39,11 +39,11 @@ def get_latest_tags(url: str, limit: int = 20, proxies: dict | None = None) -> l
39
39
  # 提取 tags
40
40
  tags = [tag["name"] for tag in results]
41
41
 
42
- logger.success(f"{info} [success]")
42
+ logger.success(f"{info} [成功]")
43
43
  return tags
44
44
 
45
45
  except Exception as e:
46
- logger.error(f"{info} [error]")
46
+ logger.error(f"{info} [错误]")
47
47
  logger.exception(e)
48
48
  return None
49
49
 
@@ -1,5 +1,5 @@
1
1
  """FTP"""
2
- # ftplib: https://docs.python.org/3.11/library/ftplib.html
2
+ # ftplib: https://docs.python.org/3.12/library/ftplib.html
3
3
  import os
4
4
  from ftplib import FTP
5
5
  from pathlib import Path
@@ -1,14 +1,15 @@
1
- Metadata-Version: 2.2
1
+ Metadata-Version: 2.4
2
2
  Name: ezKit
3
- Version: 1.11.17
3
+ Version: 1.12.0
4
4
  Summary: Easy Kit
5
5
  Author: septvean
6
6
  Author-email: septvean@gmail.com
7
- Requires-Python: >=3.11
7
+ Requires-Python: >=3.12
8
8
  License-File: LICENSE
9
9
  Requires-Dist: loguru>=0.7
10
10
  Dynamic: author
11
11
  Dynamic: author-email
12
+ Dynamic: license-file
12
13
  Dynamic: requires-dist
13
14
  Dynamic: requires-python
14
15
  Dynamic: summary
@@ -3,7 +3,7 @@ from setuptools import find_packages, setup
3
3
 
4
4
  setup(
5
5
  name='ezKit',
6
- version='1.11.17',
6
+ version='1.12.0',
7
7
  author='septvean',
8
8
  author_email='septvean@gmail.com',
9
9
  description='Easy Kit',
@@ -12,7 +12,7 @@ setup(
12
12
  package_data={
13
13
  'ezKit': ['markdown_to_html.template']
14
14
  },
15
- python_requires='>=3.11',
15
+ python_requires='>=3.12',
16
16
  install_requires=[
17
17
  "loguru>=0.7"
18
18
  ]
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes