bosdyn-scout 3.3.0__py3-none-any.whl → 3.3.2__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.
- bosdyn/scout/client.py +13 -0
- {bosdyn_scout-3.3.0.dist-info → bosdyn_scout-3.3.2.dist-info}/METADATA +1 -1
- {bosdyn_scout-3.3.0.dist-info → bosdyn_scout-3.3.2.dist-info}/RECORD +5 -5
- {bosdyn_scout-3.3.0.dist-info → bosdyn_scout-3.3.2.dist-info}/WHEEL +0 -0
- {bosdyn_scout-3.3.0.dist-info → bosdyn_scout-3.3.2.dist-info}/top_level.txt +0 -0
bosdyn/scout/client.py
CHANGED
|
@@ -334,6 +334,19 @@ class ScoutClient():
|
|
|
334
334
|
"""
|
|
335
335
|
return self.get_resource(f'runs/{uuid}', **kwargs)
|
|
336
336
|
|
|
337
|
+
def get_run_archives_by_id(self, uuid, **kwargs):
|
|
338
|
+
""" Given a runUuid, returns run archives
|
|
339
|
+
- Args:
|
|
340
|
+
- uuid(str): the ID associated with the run
|
|
341
|
+
- kwargs(**): a variable number of keyword arguments for the get request
|
|
342
|
+
- Raises:
|
|
343
|
+
- RequestExceptions: exceptions thrown by the Requests library
|
|
344
|
+
- UnauthenticatedScoutClientError: indicates that the scout client is not authenticated properly
|
|
345
|
+
- Returns
|
|
346
|
+
- requests.Response(Response object): the response associated with the the get request
|
|
347
|
+
"""
|
|
348
|
+
return self.get_resource(f'run_archives/{uuid}', **kwargs)
|
|
349
|
+
|
|
337
350
|
def get_image(self, url, **kwargs):
|
|
338
351
|
""" Given a data capture url, returns a raw image
|
|
339
352
|
- Args:
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
bosdyn/__init__.py,sha256=CMQioQKK1NlMk3kZuY49b_Aw-JyvDeOtuqOCAul1I0s,330
|
|
2
2
|
bosdyn/scout/__init__.py,sha256=1qUAbnMKYlERYZvxtGz4ThjYef7Tx-ZBclLoVE_ecjU,265
|
|
3
|
-
bosdyn/scout/client.py,sha256=
|
|
3
|
+
bosdyn/scout/client.py,sha256=WE2kyZjoQOOyLiUlaqLKDV12xgVxkeFEM6-Gi2Vmx84,25697
|
|
4
4
|
bosdyn/scout/exceptions.py,sha256=Rw-4PGV92TSyBqkPopHXQe3ppLKbrH5_mrdmmWb8s-c,623
|
|
5
5
|
bosdyn/scout/utils.py,sha256=CcDDfaJpvAhHMYSUaaE4Vswx4CaZMstpvOt38r4mcrM,11687
|
|
6
|
-
bosdyn_scout-3.3.
|
|
7
|
-
bosdyn_scout-3.3.
|
|
8
|
-
bosdyn_scout-3.3.
|
|
9
|
-
bosdyn_scout-3.3.
|
|
6
|
+
bosdyn_scout-3.3.2.dist-info/METADATA,sha256=v2tszkzQoeQdcokfUPNZQhtJcre1v2couy83QX2fz20,1894
|
|
7
|
+
bosdyn_scout-3.3.2.dist-info/WHEEL,sha256=pkctZYzUS4AYVn6dJ-7367OJZivF2e8RA9b_ZBjif18,92
|
|
8
|
+
bosdyn_scout-3.3.2.dist-info/top_level.txt,sha256=an2OWgx1ej2jFjmBjPWNQ68ZglvUfKhmXWW-WhTtDmA,7
|
|
9
|
+
bosdyn_scout-3.3.2.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|