bcmd 0.6.14__tar.gz → 0.6.16__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.

Potentially problematic release.


This version of bcmd might be problematic. Click here for more details.

Files changed (40) hide show
  1. {bcmd-0.6.14 → bcmd-0.6.16}/PKG-INFO +1 -1
  2. {bcmd-0.6.14 → bcmd-0.6.16}/bcmd/tasks/wslProxy.py +3 -3
  3. {bcmd-0.6.14 → bcmd-0.6.16}/bcmd.egg-info/PKG-INFO +1 -1
  4. {bcmd-0.6.14 → bcmd-0.6.16}/pyproject.toml +1 -1
  5. {bcmd-0.6.14 → bcmd-0.6.16}/MANIFEST.in +0 -0
  6. {bcmd-0.6.14 → bcmd-0.6.16}/README.md +0 -0
  7. {bcmd-0.6.14 → bcmd-0.6.16}/bcmd/__init__.py +0 -0
  8. {bcmd-0.6.14 → bcmd-0.6.16}/bcmd/common/__init__.py +0 -0
  9. {bcmd-0.6.14 → bcmd-0.6.16}/bcmd/common/func.py +0 -0
  10. {bcmd-0.6.14 → bcmd-0.6.16}/bcmd/common/secret.py +0 -0
  11. {bcmd-0.6.14 → bcmd-0.6.16}/bcmd/resources/project/main.py +0 -0
  12. {bcmd-0.6.14 → bcmd-0.6.16}/bcmd/tasks/__init__.py +0 -0
  13. {bcmd-0.6.14 → bcmd-0.6.16}/bcmd/tasks/bin.py +0 -0
  14. {bcmd-0.6.14 → bcmd-0.6.16}/bcmd/tasks/code.py +0 -0
  15. {bcmd-0.6.14 → bcmd-0.6.16}/bcmd/tasks/crypto.py +0 -0
  16. {bcmd-0.6.14 → bcmd-0.6.16}/bcmd/tasks/docs.py +0 -0
  17. {bcmd-0.6.14 → bcmd-0.6.16}/bcmd/tasks/download.py +0 -0
  18. {bcmd-0.6.14 → bcmd-0.6.16}/bcmd/tasks/image.py +0 -0
  19. {bcmd-0.6.14 → bcmd-0.6.16}/bcmd/tasks/json.py +0 -0
  20. {bcmd-0.6.14 → bcmd-0.6.16}/bcmd/tasks/lib.py +0 -0
  21. {bcmd-0.6.14 → bcmd-0.6.16}/bcmd/tasks/math.py +0 -0
  22. {bcmd-0.6.14 → bcmd-0.6.16}/bcmd/tasks/mirror.py +0 -0
  23. {bcmd-0.6.14 → bcmd-0.6.16}/bcmd/tasks/pdf.py +0 -0
  24. {bcmd-0.6.14 → bcmd-0.6.16}/bcmd/tasks/proxy.py +0 -0
  25. {bcmd-0.6.14 → bcmd-0.6.16}/bcmd/tasks/time.py +0 -0
  26. {bcmd-0.6.14 → bcmd-0.6.16}/bcmd/tasks/upgrade.py +0 -0
  27. {bcmd-0.6.14 → bcmd-0.6.16}/bcmd/tasks/wasabi.py +0 -0
  28. {bcmd-0.6.14 → bcmd-0.6.16}/bcmd/utils/__init__.py +0 -0
  29. {bcmd-0.6.14 → bcmd-0.6.16}/bcmd/utils/utils.py +0 -0
  30. {bcmd-0.6.14 → bcmd-0.6.16}/bcmd.egg-info/SOURCES.txt +0 -0
  31. {bcmd-0.6.14 → bcmd-0.6.16}/bcmd.egg-info/dependency_links.txt +0 -0
  32. {bcmd-0.6.14 → bcmd-0.6.16}/bcmd.egg-info/entry_points.txt +0 -0
  33. {bcmd-0.6.14 → bcmd-0.6.16}/bcmd.egg-info/requires.txt +0 -0
  34. {bcmd-0.6.14 → bcmd-0.6.16}/bcmd.egg-info/top_level.txt +0 -0
  35. {bcmd-0.6.14 → bcmd-0.6.16}/setup.cfg +0 -0
  36. {bcmd-0.6.14 → bcmd-0.6.16}/test/__init__.py +0 -0
  37. {bcmd-0.6.14 → bcmd-0.6.16}/test/conftest.py +0 -0
  38. {bcmd-0.6.14 → bcmd-0.6.16}/test/test_pdf.py +0 -0
  39. {bcmd-0.6.14 → bcmd-0.6.16}/test/test_proxy.py +0 -0
  40. {bcmd-0.6.14 → bcmd-0.6.16}/test/test_wasabi.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: bcmd
3
- Version: 0.6.14
3
+ Version: 0.6.16
4
4
  Summary: Commands for Beni
5
5
  Author-email: Beni Mang <benimang@126.com>
6
6
  Maintainer-email: Beni Mang <benimang@126.com>
@@ -16,9 +16,9 @@ async def linux(
16
16
  '生成终端设置代理服务器的命令'
17
17
  ip = "$(ip route | grep default | awk '{print $3}')"
18
18
  lineAry = textToAry(f'''
19
- export HTTP_PROXY=http://{ip}):{port}
20
- export HTTPS_PROXY=http://{ip}):{port}
21
- export ALL_PROXY=http://{ip}):{port}
19
+ export HTTP_PROXY=http://{ip}:{port}
20
+ export HTTPS_PROXY=http://{ip}:{port}
21
+ export ALL_PROXY=http://{ip}:{port}
22
22
  curl https://google.com.hk
23
23
  ''')
24
24
  msg = '\r\n' + '\n'.join(lineAry) + '\n'
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: bcmd
3
- Version: 0.6.14
3
+ Version: 0.6.16
4
4
  Summary: Commands for Beni
5
5
  Author-email: Beni Mang <benimang@126.com>
6
6
  Maintainer-email: Beni Mang <benimang@126.com>
@@ -3,7 +3,7 @@
3
3
 
4
4
  [project]
5
5
  name = 'bcmd'
6
- version = '0.6.14'
6
+ version = '0.6.16'
7
7
  description = 'Commands for Beni'
8
8
  requires-python = '>=3.10'
9
9
  keywords = ['benimang', 'beni', 'bcmd']
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
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