lange-python 0.3.19__tar.gz → 0.3.21__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 (31) hide show
  1. {lange_python-0.3.19 → lange_python-0.3.21}/PKG-INFO +2 -2
  2. {lange_python-0.3.19 → lange_python-0.3.21}/README.md +1 -1
  3. {lange_python-0.3.19 → lange_python-0.3.21}/lange/tunnel/_client.py +1 -1
  4. {lange_python-0.3.19 → lange_python-0.3.21}/pyproject.toml +1 -1
  5. {lange_python-0.3.19 → lange_python-0.3.21}/lange/__init__.py +0 -0
  6. {lange_python-0.3.19 → lange_python-0.3.21}/lange/__main__.py +0 -0
  7. {lange_python-0.3.19 → lange_python-0.3.21}/lange/_util/__init__.py +0 -0
  8. {lange_python-0.3.19 → lange_python-0.3.21}/lange/_util/_base_client.py +0 -0
  9. {lange_python-0.3.19 → lange_python-0.3.21}/lange/_util/_key_handling.py +0 -0
  10. {lange_python-0.3.19 → lange_python-0.3.21}/lange/cli/__init__.py +0 -0
  11. {lange_python-0.3.19 → lange_python-0.3.21}/lange/cli/build/__init__.py +0 -0
  12. {lange_python-0.3.19 → lange_python-0.3.21}/lange/cli/build/_command.py +0 -0
  13. {lange_python-0.3.19 → lange_python-0.3.21}/lange/cli/build/_discovery.py +0 -0
  14. {lange_python-0.3.19 → lange_python-0.3.21}/lange/cli/build/_docker.py +0 -0
  15. {lange_python-0.3.19 → lange_python-0.3.21}/lange/cli/build/_poetry.py +0 -0
  16. {lange_python-0.3.19 → lange_python-0.3.21}/lange/cli/build/_types.py +0 -0
  17. {lange_python-0.3.19 → lange_python-0.3.21}/lange/cli/code/__init__.py +0 -0
  18. {lange_python-0.3.19 → lange_python-0.3.21}/lange/cli/code/_stats.py +0 -0
  19. {lange_python-0.3.19 → lange_python-0.3.21}/lange/cli/code/audit/__init__.py +0 -0
  20. {lange_python-0.3.19 → lange_python-0.3.21}/lange/cli/code/audit/_command.py +0 -0
  21. {lange_python-0.3.19 → lange_python-0.3.21}/lange/cli/code/audit/_discovery.py +0 -0
  22. {lange_python-0.3.19 → lange_python-0.3.21}/lange/cli/code/audit/_runner.py +0 -0
  23. {lange_python-0.3.19 → lange_python-0.3.21}/lange/cli/code/audit/_types.py +0 -0
  24. {lange_python-0.3.19 → lange_python-0.3.21}/lange/cli/distribution/__init__.py +0 -0
  25. {lange_python-0.3.19 → lange_python-0.3.21}/lange/cli/distribution/_command.py +0 -0
  26. {lange_python-0.3.19 → lange_python-0.3.21}/lange/distribution/__init__.py +0 -0
  27. {lange_python-0.3.19 → lange_python-0.3.21}/lange/distribution/_client.py +0 -0
  28. {lange_python-0.3.19 → lange_python-0.3.21}/lange/distribution/_update_macos.py +0 -0
  29. {lange_python-0.3.19 → lange_python-0.3.21}/lange/distribution/_util.py +0 -0
  30. {lange_python-0.3.19 → lange_python-0.3.21}/lange/tunnel/__init__.py +0 -0
  31. {lange_python-0.3.19 → lange_python-0.3.21}/lange/tunnel/_util.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: lange-python
3
- Version: 0.3.19
3
+ Version: 0.3.21
4
4
  Summary: A bundeld set of tools, clients for the lange-suite of tools and more.
5
5
  Author: contact@robertlange.me
6
6
  Requires-Python: >=3.10
@@ -74,7 +74,7 @@ client.reload(api_key=None) # clears authentication and marks the client unauth
74
74
  from lange.tunnel import Tunnel
75
75
 
76
76
  tunnel = Tunnel(
77
- host="wss://tunnel.lange-labs.com",
77
+ host="wss://api.lange-labs.com",
78
78
  api_key="your-bearer-token",
79
79
  target="http://localhost:3000",
80
80
  )
@@ -56,7 +56,7 @@ client.reload(api_key=None) # clears authentication and marks the client unauth
56
56
  from lange.tunnel import Tunnel
57
57
 
58
58
  tunnel = Tunnel(
59
- host="wss://tunnel.lange-labs.com",
59
+ host="wss://api.lange-labs.com",
60
60
  api_key="your-bearer-token",
61
61
  target="http://localhost:3000",
62
62
  )
@@ -26,7 +26,7 @@ class Tunnel(BaseLangeLabsClient):
26
26
 
27
27
  def __init__(
28
28
  self,
29
- host: str = "wss://tunnel.lange-labs.com",
29
+ host: str = "wss://api.lange-labs.com",
30
30
  api_key: str | None = None,
31
31
  target: str = "http://localhost:80",
32
32
  verify_ssl: bool = True,
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "lange-python"
3
- version = "0.3.19"
3
+ version = "0.3.21"
4
4
  description = "A bundeld set of tools, clients for the lange-suite of tools and more."
5
5
  authors = [
6
6
  {name = "contact@robertlange.me"}