kleinkram 0.32.1.dev20241016063650__tar.gz → 0.32.2__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.32.1.dev20241016063650 → kleinkram-0.32.2}/PKG-INFO +1 -1
  2. {kleinkram-0.32.1.dev20241016063650 → kleinkram-0.32.2}/pyproject.toml +1 -1
  3. {kleinkram-0.32.1.dev20241016063650 → kleinkram-0.32.2}/requirements.txt +2 -2
  4. {kleinkram-0.32.1.dev20241016063650 → kleinkram-0.32.2}/src/kleinkram/mission/mission.py +6 -4
  5. {kleinkram-0.32.1.dev20241016063650 → kleinkram-0.32.2}/.gitignore +0 -0
  6. {kleinkram-0.32.1.dev20241016063650 → kleinkram-0.32.2}/LICENSE +0 -0
  7. {kleinkram-0.32.1.dev20241016063650 → kleinkram-0.32.2}/README.md +0 -0
  8. {kleinkram-0.32.1.dev20241016063650 → kleinkram-0.32.2}/deploy.sh +0 -0
  9. {kleinkram-0.32.1.dev20241016063650 → kleinkram-0.32.2}/dev.sh +0 -0
  10. {kleinkram-0.32.1.dev20241016063650 → kleinkram-0.32.2}/src/klein.py +0 -0
  11. {kleinkram-0.32.1.dev20241016063650 → kleinkram-0.32.2}/src/kleinkram/__init__.py +0 -0
  12. {kleinkram-0.32.1.dev20241016063650 → kleinkram-0.32.2}/src/kleinkram/api_client.py +0 -0
  13. {kleinkram-0.32.1.dev20241016063650 → kleinkram-0.32.2}/src/kleinkram/auth/auth.py +0 -0
  14. {kleinkram-0.32.1.dev20241016063650 → kleinkram-0.32.2}/src/kleinkram/consts.py +0 -0
  15. {kleinkram-0.32.1.dev20241016063650 → kleinkram-0.32.2}/src/kleinkram/endpoint/endpoint.py +0 -0
  16. {kleinkram-0.32.1.dev20241016063650 → kleinkram-0.32.2}/src/kleinkram/error_handling.py +0 -0
  17. {kleinkram-0.32.1.dev20241016063650 → kleinkram-0.32.2}/src/kleinkram/file/file.py +0 -0
  18. {kleinkram-0.32.1.dev20241016063650 → kleinkram-0.32.2}/src/kleinkram/helper.py +0 -0
  19. {kleinkram-0.32.1.dev20241016063650 → kleinkram-0.32.2}/src/kleinkram/main.py +0 -0
  20. {kleinkram-0.32.1.dev20241016063650 → kleinkram-0.32.2}/src/kleinkram/project/project.py +0 -0
  21. {kleinkram-0.32.1.dev20241016063650 → kleinkram-0.32.2}/src/kleinkram/queue/queue.py +0 -0
  22. {kleinkram-0.32.1.dev20241016063650 → kleinkram-0.32.2}/src/kleinkram/tag/tag.py +0 -0
  23. {kleinkram-0.32.1.dev20241016063650 → kleinkram-0.32.2}/src/kleinkram/topic/topic.py +0 -0
  24. {kleinkram-0.32.1.dev20241016063650 → kleinkram-0.32.2}/src/kleinkram/user/user.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: kleinkram
3
- Version: 0.32.1.dev20241016063650
3
+ Version: 0.32.2
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.32.1-dev20241016063650"
7
+ version = "0.32.2"
8
8
  description = "A CLI for the ETH project kleinkram"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.7"
@@ -6,6 +6,6 @@ rich~=13.9.2
6
6
  tqdm~=4.66.4
7
7
  black~=24.10.0
8
8
  requests~=2.32.3
9
- boto3~=1.35.35
10
- botocore~=1.35.40
9
+ boto3~=1.35.45
10
+ botocore~=1.35.45
11
11
  importlib-metadata~=8.5.0
@@ -156,7 +156,9 @@ def mission_by_uuid(
156
156
 
157
157
  @missionCommands.command("download")
158
158
  def download(
159
- mission_uuid: Annotated[List[str], typer.Option(help="UUIDs of Mission to download")],
159
+ mission_uuid: Annotated[
160
+ List[str], typer.Option(help="UUIDs of Mission to download")
161
+ ],
160
162
  local_path: Annotated[str, typer.Option()],
161
163
  ):
162
164
  """
@@ -184,15 +186,15 @@ def download(
184
186
  )
185
187
 
186
188
  paths = response.json()
187
- if(len(paths) == 0):
189
+ if len(paths) == 0:
188
190
  continue
189
191
 
190
192
  for path in paths:
191
193
 
192
- filename = path['filename']
194
+ filename = path["filename"]
193
195
  print(f" - {filename}")
194
196
 
195
- response = requests.get(path['link'], stream=True) # Enable streaming mode
197
+ response = requests.get(path["link"], stream=True) # Enable streaming mode
196
198
  chunk_size = 1024 * 100 # 100 KB chunks, adjust size if needed
197
199
 
198
200
  # Open the file for writing in binary mode