easy_whitelist 1.0.27__py2.py3-none-any.whl → 1.0.28__py2.py3-none-any.whl

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.
@@ -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.27'
3
+ __version__ = '1.0.28'
4
4
  # __author__ = 'qiqileleabaobao <qiqilelebaobao@163.com>'
5
5
 
6
6
  __all__ = []
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: easy_whitelist
3
- Version: 1.0.27
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
@@ -56,6 +56,6 @@ Python3 is required
56
56
  ## 使用说明 Instructions
57
57
 
58
58
  ```shell
59
- $ python3 easy.py -t template list
59
+ $ python -m easy_whitelist -t template list
60
60
  ```
61
61
 
@@ -1,5 +1,5 @@
1
- easy_whitelist/__init__.py,sha256=3SuS3TMcAfJh0kBoPFQh_kPQl5DUiFWbNPQ80yxUa14,303
2
- easy_whitelist/easy.py,sha256=_dUY-U_y0k2IFgQwq5KTauOcKXBF5T1ARC_Vl82eyPw,1727
1
+ easy_whitelist/__init__.py,sha256=QztexXm4CAyhZ_3B2rIbBg-dGvd9kF3tX766XrzYFSk,303
2
+ easy_whitelist/__main__.py,sha256=_dUY-U_y0k2IFgQwq5KTauOcKXBF5T1ARC_Vl82eyPw,1727
3
3
  easy_whitelist/config/__init__.py,sha256=fK-lJ3GD4u1_FGkZfPf-f7fxjMwb1t0AZcG7mfIHLks,19
4
4
  easy_whitelist/config/arg.py,sha256=Ytk9fKXd2-k0C01SHGtbYJGYVz2VqR8eDanJExZrPi4,1017
5
5
  easy_whitelist/ip/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -10,7 +10,8 @@ easy_whitelist/ip/url.py,sha256=pZeexIQfJFWv-KdlOIAOVVk5aap4dyLsu2CiV8i9ofw,438
10
10
  easy_whitelist/tcloud/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
11
  easy_whitelist/tcloud/client.py,sha256=Cbx66K8S7fAMto9GJMynOplbgk1m-QWg863BxeO0D24,785
12
12
  easy_whitelist/tcloud/template.py,sha256=8SuN2oLiYzgfySb3-Bc5EEuZon8sE5ea3n0QFdnM8Ys,5853
13
- easy_whitelist-1.0.27.dist-info/LICENSE,sha256=sWhlh6jzXRpuhxIbCZfjCEX_YQI4mMK6iO1bfpgkfzM,11343
14
- easy_whitelist-1.0.27.dist-info/WHEEL,sha256=Sgu64hAMa6g5FdzHxXv9Xdse9yxpGGMeagVtPMWpJQY,99
15
- easy_whitelist-1.0.27.dist-info/METADATA,sha256=jw6fyVS-MrAqI9D2pVIpHNfXbMiS7vv5uFYwwy3VGkI,3149
16
- easy_whitelist-1.0.27.dist-info/RECORD,,
13
+ easy_whitelist-1.0.28.dist-info/entry_points.txt,sha256=-URzXdGXqVTDQm_AhH9k0u4Qm9G0s4ZDXcnA-XQt73Q,53
14
+ easy_whitelist-1.0.28.dist-info/LICENSE,sha256=sWhlh6jzXRpuhxIbCZfjCEX_YQI4mMK6iO1bfpgkfzM,11343
15
+ easy_whitelist-1.0.28.dist-info/WHEEL,sha256=Sgu64hAMa6g5FdzHxXv9Xdse9yxpGGMeagVtPMWpJQY,99
16
+ easy_whitelist-1.0.28.dist-info/METADATA,sha256=bgShm5kKsB_6j5is0ZTkLEGX0nE7n0NYChMQZlP13es,3158
17
+ easy_whitelist-1.0.28.dist-info/RECORD,,
@@ -0,0 +1,3 @@
1
+ [console_scripts]
2
+ easy=easy_whitelist.__main__:main
3
+
File without changes