easy_whitelist 1.0.48__tar.gz → 1.0.52__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.52/.gitignore +16 -0
  2. {easy_whitelist-1.0.48 → easy_whitelist-1.0.52}/PKG-INFO +4 -3
  3. easy_whitelist-1.0.52/easy_whitelist/__init__.py +5 -0
  4. {easy_whitelist-1.0.48 → easy_whitelist-1.0.52}/pyproject.toml +6 -6
  5. easy_whitelist-1.0.52/tests/test.py +3 -0
  6. easy_whitelist-1.0.48/.gitignore +0 -8
  7. easy_whitelist-1.0.48/easy_whitelist/__init__.py +0 -7
  8. easy_whitelist-1.0.48/note.md +0 -5
  9. easy_whitelist-1.0.48/tests/test.py +0 -0
  10. {easy_whitelist-1.0.48 → easy_whitelist-1.0.52}/CODE_OF_CONDUCT.md +0 -0
  11. {easy_whitelist-1.0.48 → easy_whitelist-1.0.52}/LICENSE +0 -0
  12. {easy_whitelist-1.0.48 → easy_whitelist-1.0.52}/README.md +0 -0
  13. {easy_whitelist-1.0.48 → easy_whitelist-1.0.52}/SECURITY.md +0 -0
  14. {easy_whitelist-1.0.48 → easy_whitelist-1.0.52}/easy_whitelist/__main__.py +0 -0
  15. {easy_whitelist-1.0.48 → easy_whitelist-1.0.52}/easy_whitelist/config/__init__.py +0 -0
  16. {easy_whitelist-1.0.48 → easy_whitelist-1.0.52}/easy_whitelist/config/arg.py +0 -0
  17. {easy_whitelist-1.0.48 → easy_whitelist-1.0.52}/easy_whitelist/ip/__init__.py +0 -0
  18. {easy_whitelist-1.0.48 → easy_whitelist-1.0.52}/easy_whitelist/ip/agent.py +0 -0
  19. {easy_whitelist-1.0.48 → easy_whitelist-1.0.52}/easy_whitelist/ip/ip.py +0 -0
  20. {easy_whitelist-1.0.48 → easy_whitelist-1.0.52}/easy_whitelist/ip/pattern.py +0 -0
  21. {easy_whitelist-1.0.48 → easy_whitelist-1.0.52}/easy_whitelist/ip/url.py +0 -0
  22. {easy_whitelist-1.0.48 → easy_whitelist-1.0.52}/easy_whitelist/sample/common_client_sample.py +0 -0
  23. {easy_whitelist-1.0.48 → easy_whitelist-1.0.52}/easy_whitelist/sample/cvm_sample_detail.py +0 -0
  24. {easy_whitelist-1.0.48 → easy_whitelist-1.0.52}/easy_whitelist/sample/cvm_sample_simple.py +0 -0
  25. {easy_whitelist-1.0.48 → easy_whitelist-1.0.52}/easy_whitelist/tcloud/__init__.py +0 -0
  26. {easy_whitelist-1.0.48 → easy_whitelist-1.0.52}/easy_whitelist/tcloud/client.py +0 -0
  27. {easy_whitelist-1.0.48 → easy_whitelist-1.0.52}/easy_whitelist/tcloud/template.py +0 -0
  28. {easy_whitelist-1.0.48 → easy_whitelist-1.0.52}/tests/.gitkeep +0 -0
@@ -0,0 +1,16 @@
1
+ #OS
2
+ .DS_Store
3
+
4
+ #editor
5
+ .vscode/
6
+ *.code-workspace
7
+
8
+ #python env
9
+ .venv/
10
+ dist/
11
+ build/
12
+ ## *.egg-info
13
+ **/__pycache__/
14
+
15
+ #note
16
+ note.md
@@ -1,8 +1,8 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.4
2
2
  Name: easy_whitelist
3
- Version: 1.0.48
3
+ Version: 1.0.52
4
4
  Summary: Easy_whitelist is a smart 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
- Keywords: automation,whitelist,acl,security-groups,alibaba-cloud,tencent-cloud,security-tools,security-group-rule
5
+ Keywords: whitelist,security-groups,alibaba-cloud,tencent-cloud,security-tools
6
6
  Author: qiqilelebaobao
7
7
  Author-email: qiqilelebaobao <qiqilelebaobao@163.com>
8
8
  Maintainer-email: qiqilelebaobao <qiqilelebaobao@163.com>
@@ -20,6 +20,7 @@ Classifier: Programming Language :: Python :: 3.11
20
20
  Classifier: Programming Language :: Python :: 3.12
21
21
  Classifier: Programming Language :: Python :: 3.13
22
22
  Classifier: Programming Language :: Python :: 3.14
23
+ License-File: LICENSE
23
24
  Requires-Dist: tencentcloud-sdk-python
24
25
  Requires-Dist: rich ; extra == "cli"
25
26
  Requires-Dist: click ; extra == "cli"
@@ -0,0 +1,5 @@
1
+
2
+ #__version__ = '1.0.48'
3
+ # __author__ = 'qiqileleabaobao <qiqilelebaobao@163.com>'
4
+
5
+ __all__ = []
@@ -1,5 +1,5 @@
1
1
  [build-system]
2
- requires = ["flit_core >= 3.4"]
2
+ requires = ["flit_core"]
3
3
  build-backend = "flit_core.buildapi"
4
4
 
5
5
  [project]
@@ -11,7 +11,9 @@ authors = [
11
11
  requires-python = ">= 3.6"
12
12
 
13
13
  readme = "README.md"
14
- license = {text = "Apache License 2.0"}
14
+
15
+ license = { file = "LICENSE" }
16
+
15
17
  classifiers = [
16
18
  "License :: OSI Approved :: Apache Software License",
17
19
  "Programming Language :: Python :: 3",
@@ -34,13 +36,11 @@ maintainers = [
34
36
  {name = "qiqilelebaobao", email = "qiqilelebaobao@163.com"}
35
37
  ]
36
38
 
37
- keywords = ["automation", "whitelist", "acl",
38
- "security-groups", "alibaba-cloud", "tencent-cloud",
39
- "security-tools", "security-group-rule"]
39
+ keywords = ["whitelist", "security-groups", "alibaba-cloud", "tencent-cloud", "security-tools"]
40
40
 
41
41
  description = 'Easy_whitelist is a smart 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.'
42
42
 
43
- version = '1.0.48'
43
+ version = '1.0.52'
44
44
 
45
45
  # dynamic = ["version", "description"]
46
46
 
@@ -0,0 +1,3 @@
1
+ import sys
2
+
3
+ print(sys.path)
@@ -1,8 +0,0 @@
1
- .DS_Store
2
- .vscode/
3
- *.code-workspace
4
- dist/
5
- build/
6
- *.egg-info
7
- **/__pycache__
8
- note.md
@@ -1,7 +0,0 @@
1
- # r"""Easy_whitelist is a smart 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
- # """
3
-
4
- #__version__ = '1.0.48'
5
- # __author__ = 'qiqileleabaobao <qiqilelebaobao@163.com>'
6
-
7
- __all__ = []
@@ -1,5 +0,0 @@
1
- # 小记录
2
-
3
- ## Cache
4
-
5
- /Users/yuyuan/Library/Caches/com.apple.python/Users/yuyuan/Gitlab
File without changes
File without changes