easy_whitelist 1.0.41__tar.gz → 1.0.43__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 (23) hide show
  1. {easy_whitelist-1.0.41 → easy_whitelist-1.0.43}/PKG-INFO +2 -1
  2. {easy_whitelist-1.0.41 → easy_whitelist-1.0.43}/easy_whitelist/__init__.py +1 -1
  3. {easy_whitelist-1.0.41 → easy_whitelist-1.0.43}/easy_whitelist/__main__.py +3 -3
  4. {easy_whitelist-1.0.41 → easy_whitelist-1.0.43}/easy_whitelist/tcloud/template.py +1 -1
  5. {easy_whitelist-1.0.41 → easy_whitelist-1.0.43}/pyproject.toml +1 -0
  6. {easy_whitelist-1.0.41 → easy_whitelist-1.0.43}/.gitignore +0 -0
  7. {easy_whitelist-1.0.41 → easy_whitelist-1.0.43}/CODE_OF_CONDUCT.md +0 -0
  8. {easy_whitelist-1.0.41 → easy_whitelist-1.0.43}/LICENSE +0 -0
  9. {easy_whitelist-1.0.41 → easy_whitelist-1.0.43}/README.md +0 -0
  10. {easy_whitelist-1.0.41 → easy_whitelist-1.0.43}/SECURITY.md +0 -0
  11. {easy_whitelist-1.0.41 → easy_whitelist-1.0.43}/easy_whitelist/config/__init__.py +0 -0
  12. {easy_whitelist-1.0.41 → easy_whitelist-1.0.43}/easy_whitelist/config/arg.py +0 -0
  13. {easy_whitelist-1.0.41 → easy_whitelist-1.0.43}/easy_whitelist/ip/__init__.py +0 -0
  14. {easy_whitelist-1.0.41 → easy_whitelist-1.0.43}/easy_whitelist/ip/agent.py +0 -0
  15. {easy_whitelist-1.0.41 → easy_whitelist-1.0.43}/easy_whitelist/ip/ip.py +0 -0
  16. {easy_whitelist-1.0.41 → easy_whitelist-1.0.43}/easy_whitelist/ip/pattern.py +0 -0
  17. {easy_whitelist-1.0.41 → easy_whitelist-1.0.43}/easy_whitelist/ip/url.py +0 -0
  18. {easy_whitelist-1.0.41 → easy_whitelist-1.0.43}/easy_whitelist/sample/common_client_sample.py +0 -0
  19. {easy_whitelist-1.0.41 → easy_whitelist-1.0.43}/easy_whitelist/sample/cvm_sample_detail.py +0 -0
  20. {easy_whitelist-1.0.41 → easy_whitelist-1.0.43}/easy_whitelist/sample/cvm_sample_simple.py +0 -0
  21. {easy_whitelist-1.0.41 → easy_whitelist-1.0.43}/easy_whitelist/tcloud/__init__.py +0 -0
  22. {easy_whitelist-1.0.41 → easy_whitelist-1.0.43}/easy_whitelist/tcloud/client.py +0 -0
  23. {easy_whitelist-1.0.41 → easy_whitelist-1.0.43}/setup.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: easy_whitelist
3
- Version: 1.0.41
3
+ Version: 1.0.43
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
5
  Keywords: automation,whitelist,acl,security-groups,alibaba-cloud,tencent-cloud,security-tools,security-group-rule
6
6
  Author: qiqilelebaobao
@@ -25,6 +25,7 @@ Requires-Dist: rich ; extra == "cli"
25
25
  Requires-Dist: click ; extra == "cli"
26
26
  Requires-Dist: PyQt5 ; extra == "gui"
27
27
  Project-URL: Homepage, https://github.com/qiqilelebaobao/easy_whitelist
28
+ Project-URL: SelfDefined, https://github.com/qiqilelebaobao/easy_whitelist
28
29
  Provides-Extra: cli
29
30
  Provides-Extra: gui
30
31
 
@@ -1,6 +1,6 @@
1
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
2
  """
3
- __version__ = '1.0.41'
3
+ __version__ = '1.0.43'
4
4
  # __author__ = 'qiqileleabaobao <qiqilelebaobao@163.com>'
5
5
 
6
6
  __all__ = []
@@ -8,9 +8,9 @@ import string
8
8
  import sys
9
9
  import logging
10
10
 
11
- from easy_whitelist.config import arg
12
- from easy_whitelist.tcloud import client
13
- from easy_whitelist.tcloud.template import list_template, set_template, create_template
11
+ from config import arg
12
+ from tcloud import client
13
+ from tcloud.template import list_template, set_template, create_template
14
14
 
15
15
 
16
16
  def loop_list(common_client, proxy=None):
@@ -3,7 +3,7 @@ import random
3
3
  import sys
4
4
  import logging
5
5
 
6
- from ..ip import ip
6
+ from ip import ip
7
7
  from tencentcloud.common.exception.tencent_cloud_sdk_exception import TencentCloudSDKException
8
8
 
9
9
 
@@ -46,6 +46,7 @@ dynamic = ["version", "description"]
46
46
 
47
47
  [project.urls]
48
48
  Homepage = "https://github.com/qiqilelebaobao/easy_whitelist"
49
+ SelfDefined = "https://github.com/qiqilelebaobao/easy_whitelist"
49
50
 
50
51
  [project.scripts]
51
52
  easy = "easy_whitelist.__main__:main"
File without changes