kleinkram 0.31.0.dev20241011184850__py3-none-any.whl → 0.32.0.dev20241014194023__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.
Potentially problematic release.
This version of kleinkram might be problematic. Click here for more details.
- kleinkram/mission/mission.py +3 -8
- {kleinkram-0.31.0.dev20241011184850.dist-info → kleinkram-0.32.0.dev20241014194023.dist-info}/METADATA +1 -1
- {kleinkram-0.31.0.dev20241011184850.dist-info → kleinkram-0.32.0.dev20241014194023.dist-info}/RECORD +6 -6
- {kleinkram-0.31.0.dev20241011184850.dist-info → kleinkram-0.32.0.dev20241014194023.dist-info}/WHEEL +0 -0
- {kleinkram-0.31.0.dev20241011184850.dist-info → kleinkram-0.32.0.dev20241014194023.dist-info}/entry_points.txt +0 -0
- {kleinkram-0.31.0.dev20241011184850.dist-info → kleinkram-0.32.0.dev20241014194023.dist-info}/licenses/LICENSE +0 -0
kleinkram/mission/mission.py
CHANGED
|
@@ -186,22 +186,17 @@ def download(
|
|
|
186
186
|
paths = response.json()
|
|
187
187
|
if(len(paths) == 0):
|
|
188
188
|
continue
|
|
189
|
-
mission_name = paths[0].split("/")[5] # Trust me bro
|
|
190
189
|
|
|
191
|
-
local_mission_path = os.path.join(local_path, mission_name)
|
|
192
|
-
os.mkdir(local_mission_path)
|
|
193
|
-
|
|
194
|
-
print(f"Downloading files to {local_mission_path}:")
|
|
195
190
|
for path in paths:
|
|
196
191
|
|
|
197
|
-
filename = path
|
|
192
|
+
filename = path['filename']
|
|
198
193
|
print(f" - {filename}")
|
|
199
194
|
|
|
200
|
-
response = requests.get(path, stream=True) # Enable streaming mode
|
|
195
|
+
response = requests.get(path['link'], stream=True) # Enable streaming mode
|
|
201
196
|
chunk_size = 1024 * 100 # 100 KB chunks, adjust size if needed
|
|
202
197
|
|
|
203
198
|
# Open the file for writing in binary mode
|
|
204
|
-
with open(os.path.join(
|
|
199
|
+
with open(os.path.join(local_path, filename), "wb") as f:
|
|
205
200
|
for chunk in response.iter_content(chunk_size=chunk_size):
|
|
206
201
|
if chunk: # Filter out keep-alive new chunks
|
|
207
202
|
f.write(chunk)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: kleinkram
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.32.0.dev20241014194023
|
|
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
|
{kleinkram-0.31.0.dev20241011184850.dist-info → kleinkram-0.32.0.dev20241014194023.dist-info}/RECORD
RENAMED
|
@@ -7,14 +7,14 @@ kleinkram/main.py,sha256=9u_msMlPhphfaL92GNrm-cRUeSHxc_mOFPeXLDzv-ok,9642
|
|
|
7
7
|
kleinkram/auth/auth.py,sha256=w3-TsxWxURzLQ3_p43zgV4Rlh4dVL_WqI6HG2aes-b4,4991
|
|
8
8
|
kleinkram/endpoint/endpoint.py,sha256=uez5UrAnP7L5rVHUysA9tFkN3dB3dG1Ojt9g3w-UWuQ,1441
|
|
9
9
|
kleinkram/file/file.py,sha256=gLCZDHHgQWq25OmeG-lwkIh4aRZaLK12xxLkbhZ_m-g,5390
|
|
10
|
-
kleinkram/mission/mission.py,sha256=
|
|
10
|
+
kleinkram/mission/mission.py,sha256=bvoIjR2v8TFU-h77SovBdncPReBI82jevJMD0L2dSic,8848
|
|
11
11
|
kleinkram/project/project.py,sha256=yDygz9JJ4Td5VsoCoCLm36HccRyd7jl65Hq05uxEGts,1602
|
|
12
12
|
kleinkram/queue/queue.py,sha256=MaLBjAu8asi9BkPvbbT-5AobCcpy3ex5rxM1kHpRINA,181
|
|
13
13
|
kleinkram/tag/tag.py,sha256=JSHbDPVfsvP34MuQhw__DPQk-Bah5G9BgwYsj_K_JGc,1805
|
|
14
14
|
kleinkram/topic/topic.py,sha256=IaXhrIHcJ3FSIr0WC-N7u9fkz-lAvSBgQklTX67t0Yc,1641
|
|
15
15
|
kleinkram/user/user.py,sha256=hDrbWeFPPnh2sswDd445SwcIFGyAbfXXWpYq1VqrK0g,1379
|
|
16
|
-
kleinkram-0.
|
|
17
|
-
kleinkram-0.
|
|
18
|
-
kleinkram-0.
|
|
19
|
-
kleinkram-0.
|
|
20
|
-
kleinkram-0.
|
|
16
|
+
kleinkram-0.32.0.dev20241014194023.dist-info/METADATA,sha256=Mkb9RlsPyFvFN5i1vmBuLr_x723do_YM6nn6ylojH1E,845
|
|
17
|
+
kleinkram-0.32.0.dev20241014194023.dist-info/WHEEL,sha256=1yFddiXMmvYK7QYTqtRNtX66WJ0Mz8PYEiEUoOUUxRY,87
|
|
18
|
+
kleinkram-0.32.0.dev20241014194023.dist-info/entry_points.txt,sha256=RHXtRzcreVHImatgjhQwZQ6GdJThElYjHEWcR1BPXUI,45
|
|
19
|
+
kleinkram-0.32.0.dev20241014194023.dist-info/licenses/LICENSE,sha256=ixuiBLtpoK3iv89l7ylKkg9rs2GzF9ukPH7ynZYzK5s,35148
|
|
20
|
+
kleinkram-0.32.0.dev20241014194023.dist-info/RECORD,,
|
{kleinkram-0.31.0.dev20241011184850.dist-info → kleinkram-0.32.0.dev20241014194023.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|