kleinkram 0.26.1.dev20241008095540__tar.gz → 0.26.1.dev20241008115122__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 kleinkram might be problematic. Click here for more details.

Files changed (24) hide show
  1. {kleinkram-0.26.1.dev20241008095540 → kleinkram-0.26.1.dev20241008115122}/PKG-INFO +1 -1
  2. {kleinkram-0.26.1.dev20241008095540 → kleinkram-0.26.1.dev20241008115122}/pyproject.toml +1 -1
  3. {kleinkram-0.26.1.dev20241008095540 → kleinkram-0.26.1.dev20241008115122}/requirements.txt +4 -4
  4. {kleinkram-0.26.1.dev20241008095540 → kleinkram-0.26.1.dev20241008115122}/src/kleinkram/error_handling.py +7 -6
  5. {kleinkram-0.26.1.dev20241008095540 → kleinkram-0.26.1.dev20241008115122}/.gitignore +0 -0
  6. {kleinkram-0.26.1.dev20241008095540 → kleinkram-0.26.1.dev20241008115122}/LICENSE +0 -0
  7. {kleinkram-0.26.1.dev20241008095540 → kleinkram-0.26.1.dev20241008115122}/README.md +0 -0
  8. {kleinkram-0.26.1.dev20241008095540 → kleinkram-0.26.1.dev20241008115122}/deploy.sh +0 -0
  9. {kleinkram-0.26.1.dev20241008095540 → kleinkram-0.26.1.dev20241008115122}/dev.sh +0 -0
  10. {kleinkram-0.26.1.dev20241008095540 → kleinkram-0.26.1.dev20241008115122}/src/klein.py +0 -0
  11. {kleinkram-0.26.1.dev20241008095540 → kleinkram-0.26.1.dev20241008115122}/src/kleinkram/__init__.py +0 -0
  12. {kleinkram-0.26.1.dev20241008095540 → kleinkram-0.26.1.dev20241008115122}/src/kleinkram/api_client.py +0 -0
  13. {kleinkram-0.26.1.dev20241008095540 → kleinkram-0.26.1.dev20241008115122}/src/kleinkram/auth/auth.py +0 -0
  14. {kleinkram-0.26.1.dev20241008095540 → kleinkram-0.26.1.dev20241008115122}/src/kleinkram/consts.py +0 -0
  15. {kleinkram-0.26.1.dev20241008095540 → kleinkram-0.26.1.dev20241008115122}/src/kleinkram/endpoint/endpoint.py +0 -0
  16. {kleinkram-0.26.1.dev20241008095540 → kleinkram-0.26.1.dev20241008115122}/src/kleinkram/file/file.py +0 -0
  17. {kleinkram-0.26.1.dev20241008095540 → kleinkram-0.26.1.dev20241008115122}/src/kleinkram/helper.py +0 -0
  18. {kleinkram-0.26.1.dev20241008095540 → kleinkram-0.26.1.dev20241008115122}/src/kleinkram/main.py +0 -0
  19. {kleinkram-0.26.1.dev20241008095540 → kleinkram-0.26.1.dev20241008115122}/src/kleinkram/mission/mission.py +0 -0
  20. {kleinkram-0.26.1.dev20241008095540 → kleinkram-0.26.1.dev20241008115122}/src/kleinkram/project/project.py +0 -0
  21. {kleinkram-0.26.1.dev20241008095540 → kleinkram-0.26.1.dev20241008115122}/src/kleinkram/queue/queue.py +0 -0
  22. {kleinkram-0.26.1.dev20241008095540 → kleinkram-0.26.1.dev20241008115122}/src/kleinkram/tag/tag.py +0 -0
  23. {kleinkram-0.26.1.dev20241008095540 → kleinkram-0.26.1.dev20241008115122}/src/kleinkram/topic/topic.py +0 -0
  24. {kleinkram-0.26.1.dev20241008095540 → kleinkram-0.26.1.dev20241008115122}/src/kleinkram/user/user.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: kleinkram
3
- Version: 0.26.1.dev20241008095540
3
+ Version: 0.26.1.dev20241008115122
4
4
  Summary: A CLI for the ETH project kleinkram
5
5
  Project-URL: Homepage, https://github.com/leggedrobotics/kleinkram
6
6
  Project-URL: Issues, https://github.com/leggedrobotics/kleinkram/issues
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "kleinkram"
7
- version = "0.26.1-dev20241008095540"
7
+ version = "0.26.1-dev20241008115122"
8
8
  description = "A CLI for the ETH project kleinkram"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.7"
@@ -2,10 +2,10 @@ httpx~=0.27.2
2
2
  requests~=2.32.3
3
3
  typer~=0.12.5
4
4
  typing_extensions~=4.12.2
5
- rich~=13.8.1
5
+ rich~=13.9.2
6
6
  tqdm~=4.66.4
7
7
  black~=24.8.0
8
8
  requests~=2.32.3
9
- boto3~=1.35.20
10
- botocore~=1.35.19
11
- importlib-metadata~=8.4.0
9
+ boto3~=1.35.35
10
+ botocore~=1.35.35
11
+ importlib-metadata~=8.5.0
@@ -1,3 +1,4 @@
1
+ import sys
1
2
  import typing
2
3
 
3
4
  import typer
@@ -20,7 +21,7 @@ class AccessDeniedException(Exception):
20
21
 
21
22
 
22
23
  def not_yet_implemented_handler(e: Exception):
23
- console = Console()
24
+ console = Console(file=sys.stderr)
24
25
  panel = Panel(
25
26
  "This feature is not yet implemented, please check for updates.",
26
27
  title="Not Yet Implemented",
@@ -34,7 +35,7 @@ def not_yet_implemented_handler(e: Exception):
34
35
 
35
36
 
36
37
  def not_authenticated_handler(e: NotAuthenticatedException):
37
- console = Console()
38
+ console = Console(file=sys.stderr)
38
39
  panel = Panel(
39
40
  f"{e.message}\n » Please run 'klein login' to authenticate.",
40
41
  title="Not Authenticated",
@@ -48,7 +49,7 @@ def not_authenticated_handler(e: NotAuthenticatedException):
48
49
 
49
50
 
50
51
  def access_denied_handler(e: AccessDeniedException):
51
- console = Console()
52
+ console = Console(file=sys.stderr)
52
53
  panel = Panel(
53
54
  f"{e.message}\n » API Response: {e.api_error}",
54
55
  title="Access Denied",
@@ -62,7 +63,7 @@ def access_denied_handler(e: AccessDeniedException):
62
63
 
63
64
 
64
65
  def value_error_handler(e: Exception):
65
- console = Console()
66
+ console = Console(file=sys.stderr)
66
67
  panel = Panel(
67
68
  str(e),
68
69
  title="Invalid Argument",
@@ -76,7 +77,7 @@ def value_error_handler(e: Exception):
76
77
 
77
78
 
78
79
  def http_status_error_handler(e: HTTPStatusError):
79
- console = Console()
80
+ console = Console(file=sys.stderr)
80
81
  panel = Panel(
81
82
  f"An HTTP error occurred: {e}\n\n » Please report this error to the developers.",
82
83
  title="HTTP Status Error",
@@ -90,7 +91,7 @@ def http_status_error_handler(e: HTTPStatusError):
90
91
 
91
92
 
92
93
  def remote_down_handler(e: Exception):
93
- console = Console()
94
+ console = Console(file=sys.stderr)
94
95
  panel = Panel(
95
96
  f"An error occurred while communicating with the remote server: {e}\n"
96
97
  f"\n » The server may be down or unreachable; please try again.",