easy_whitelist 1.0.26__tar.gz → 1.0.28__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. {easy_whitelist-1.0.26 → easy_whitelist-1.0.28}/PKG-INFO +13 -2
  2. {easy_whitelist-1.0.26 → easy_whitelist-1.0.28}/README.md +1 -1
  3. {easy_whitelist-1.0.26 → easy_whitelist-1.0.28}/easy_whitelist/__init__.py +1 -1
  4. easy_whitelist-1.0.28/pyproject.toml +42 -0
  5. easy_whitelist-1.0.26/pyproject.toml +0 -22
  6. {easy_whitelist-1.0.26 → easy_whitelist-1.0.28}/.gitignore +0 -0
  7. {easy_whitelist-1.0.26 → easy_whitelist-1.0.28}/CODE_OF_CONDUCT.md +0 -0
  8. {easy_whitelist-1.0.26 → easy_whitelist-1.0.28}/LICENSE +0 -0
  9. {easy_whitelist-1.0.26 → easy_whitelist-1.0.28}/SECURITY.md +0 -0
  10. /easy_whitelist-1.0.26/easy_whitelist/easy.py → /easy_whitelist-1.0.28/easy_whitelist/__main__.py +0 -0
  11. {easy_whitelist-1.0.26 → easy_whitelist-1.0.28}/easy_whitelist/config/__init__.py +0 -0
  12. {easy_whitelist-1.0.26 → easy_whitelist-1.0.28}/easy_whitelist/config/arg.py +0 -0
  13. {easy_whitelist-1.0.26 → easy_whitelist-1.0.28}/easy_whitelist/ip/__init__.py +0 -0
  14. {easy_whitelist-1.0.26 → easy_whitelist-1.0.28}/easy_whitelist/ip/agent.py +0 -0
  15. {easy_whitelist-1.0.26 → easy_whitelist-1.0.28}/easy_whitelist/ip/ip.py +0 -0
  16. {easy_whitelist-1.0.26 → easy_whitelist-1.0.28}/easy_whitelist/ip/pattern.py +0 -0
  17. {easy_whitelist-1.0.26 → easy_whitelist-1.0.28}/easy_whitelist/ip/url.py +0 -0
  18. {easy_whitelist-1.0.26 → easy_whitelist-1.0.28}/easy_whitelist/tcloud/__init__.py +0 -0
  19. {easy_whitelist-1.0.26 → easy_whitelist-1.0.28}/easy_whitelist/tcloud/client.py +0 -0
  20. {easy_whitelist-1.0.26 → easy_whitelist-1.0.28}/easy_whitelist/tcloud/template.py +0 -0
  21. {easy_whitelist-1.0.26 → easy_whitelist-1.0.28}/sample/__init__.py +0 -0
  22. {easy_whitelist-1.0.26 → easy_whitelist-1.0.28}/sample/aa.py +0 -0
  23. {easy_whitelist-1.0.26 → easy_whitelist-1.0.28}/sample/common_client_sample.py +0 -0
  24. {easy_whitelist-1.0.26 → easy_whitelist-1.0.28}/sample/memo.md +0 -0
  25. {easy_whitelist-1.0.26 → easy_whitelist-1.0.28}/sample/sample.py +0 -0
  26. {easy_whitelist-1.0.26 → easy_whitelist-1.0.28}/sample/test.py +0 -0
  27. {easy_whitelist-1.0.26 → easy_whitelist-1.0.28}/sample/test2.py +0 -0
  28. {easy_whitelist-1.0.26 → easy_whitelist-1.0.28}/setup.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: easy_whitelist
3
- Version: 1.0.26
3
+ Version: 1.0.28
4
4
  Summary: Easy_whitelist is a small tool that detects the local Internet IP address and automatically updates the local Internet IP address to the cloud security group whitelist. The tool is written in Python.
5
5
  Keywords: automation,whitelist,acl,security-groups,alibaba-cloud,tencent-cloud,security-tools,security-group-rule
6
6
  Author: qiqilelebaobao
@@ -8,6 +8,17 @@ Author-email: qiqilelebaobao <qiqilelebaobao@163.com>
8
8
  Maintainer-email: qiqilelebaobao <qiqilelebaobao@163.com>
9
9
  Description-Content-Type: text/markdown
10
10
  Classifier: License :: OSI Approved :: Apache Software License
11
+ Classifier: Programming Language :: Python :: 3
12
+ Classifier: Programming Language :: Python :: 3 :: Only
13
+ Classifier: Programming Language :: Python :: 3.6
14
+ Classifier: Programming Language :: Python :: 3.7
15
+ Classifier: Programming Language :: Python :: 3.8
16
+ Classifier: Programming Language :: Python :: 3.9
17
+ Classifier: Programming Language :: Python :: 3.10
18
+ Classifier: Programming Language :: Python :: 3.11
19
+ Classifier: Programming Language :: Python :: 3.12
20
+ Classifier: Programming Language :: Python :: 3.13
21
+ Classifier: Programming Language :: Python :: 3.14
11
22
  Requires-Dist: tencentcloud-sdk-python
12
23
  Project-URL: Homepage, https://github.com/qiqilelebaobao/easy_whitelist
13
24
 
@@ -45,6 +56,6 @@ Python3 is required
45
56
  ## 使用说明 Instructions
46
57
 
47
58
  ```shell
48
- $ python3 easy.py -t template list
59
+ $ python -m easy_whitelist -t template list
49
60
  ```
50
61
 
@@ -32,5 +32,5 @@ Python3 is required
32
32
  ## 使用说明 Instructions
33
33
 
34
34
  ```shell
35
- $ python3 easy.py -t template list
35
+ $ python -m easy_whitelist -t template list
36
36
  ```
@@ -1,6 +1,6 @@
1
1
  r"""Easy_whitelist is a small tool that detects the local Internet IP address and automatically updates the local Internet IP address to the cloud security group whitelist. The tool is written in Python.
2
2
  """
3
- __version__ = '1.0.26'
3
+ __version__ = '1.0.28'
4
4
  # __author__ = 'qiqileleabaobao <qiqilelebaobao@163.com>'
5
5
 
6
6
  __all__ = []
@@ -0,0 +1,42 @@
1
+ [build-system]
2
+ requires = ["flit_core >=3.2,<4"]
3
+ build-backend = "flit_core.buildapi"
4
+
5
+ [project]
6
+ name = "easy_whitelist"
7
+ authors = [
8
+ {name = "qiqilelebaobao"},
9
+ {name = "qiqilelebaobao", email = "qiqilelebaobao@163.com"}
10
+ ]
11
+
12
+ readme = "README.md"
13
+ license = {text = "Apache License 2.0"}
14
+ classifiers = [
15
+ "License :: OSI Approved :: Apache Software License",
16
+ "Programming Language :: Python :: 3",
17
+ "Programming Language :: Python :: 3 :: Only",
18
+ "Programming Language :: Python :: 3.6",
19
+ "Programming Language :: Python :: 3.7",
20
+ "Programming Language :: Python :: 3.8",
21
+ "Programming Language :: Python :: 3.9",
22
+ "Programming Language :: Python :: 3.10",
23
+ "Programming Language :: Python :: 3.11",
24
+ "Programming Language :: Python :: 3.12",
25
+ "Programming Language :: Python :: 3.13",
26
+ "Programming Language :: Python :: 3.14"
27
+ ]
28
+ dynamic = ["version", "description"]
29
+ dependencies = [
30
+ "tencentcloud-sdk-python",
31
+ ]
32
+ maintainers = [
33
+ {name = "qiqilelebaobao", email = "qiqilelebaobao@163.com"}
34
+ ]
35
+
36
+ keywords = ["automation", "whitelist", "acl", "security-groups", "alibaba-cloud", "tencent-cloud", "security-tools", "security-group-rule"]
37
+
38
+ [project.urls]
39
+ Homepage = "https://github.com/qiqilelebaobao/easy_whitelist"
40
+
41
+ [project.scripts]
42
+ easy = "easy_whitelist.__main__:main"
@@ -1,22 +0,0 @@
1
- [build-system]
2
- requires = ["flit_core >=3.2,<4"]
3
- build-backend = "flit_core.buildapi"
4
-
5
- [project]
6
- name = "easy_whitelist"
7
- authors = [{name = "qiqilelebaobao"}, {name = "qiqilelebaobao", email = "qiqilelebaobao@163.com"}]
8
- readme = "README.md"
9
- license = {text = "Apache License 2.0"}
10
- classifiers = ["License :: OSI Approved :: Apache Software License"]
11
- dynamic = ["version", "description"]
12
- dependencies = [
13
- "tencentcloud-sdk-python",
14
- ]
15
- maintainers = [
16
- {name = "qiqilelebaobao", email = "qiqilelebaobao@163.com"}
17
- ]
18
-
19
- keywords = ["automation", "whitelist", "acl", "security-groups", "alibaba-cloud", "tencent-cloud", "security-tools", "security-group-rule"]
20
-
21
- [project.urls]
22
- Homepage = "https://github.com/qiqilelebaobao/easy_whitelist"
File without changes