supervisely 6.73.223__py3-none-any.whl → 6.73.225__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 supervisely might be problematic. Click here for more details.
- supervisely/app/widgets/grid_plot/grid_plot.py +3 -3
- supervisely/convert/converter.py +1 -1
- {supervisely-6.73.223.dist-info → supervisely-6.73.225.dist-info}/METADATA +1 -1
- {supervisely-6.73.223.dist-info → supervisely-6.73.225.dist-info}/RECORD +8 -8
- {supervisely-6.73.223.dist-info → supervisely-6.73.225.dist-info}/LICENSE +0 -0
- {supervisely-6.73.223.dist-info → supervisely-6.73.225.dist-info}/WHEEL +0 -0
- {supervisely-6.73.223.dist-info → supervisely-6.73.225.dist-info}/entry_points.txt +0 -0
- {supervisely-6.73.223.dist-info → supervisely-6.73.225.dist-info}/top_level.txt +0 -0
|
@@ -10,7 +10,7 @@ from supervisely.sly_logger import logger
|
|
|
10
10
|
class GridPlot(Widget):
|
|
11
11
|
def __init__(
|
|
12
12
|
self,
|
|
13
|
-
data: List[Union[Dict
|
|
13
|
+
data: List[Union[Dict, str]] = [],
|
|
14
14
|
columns: int = 1,
|
|
15
15
|
gap: int = 10,
|
|
16
16
|
widget_id: str = None,
|
|
@@ -19,7 +19,7 @@ class GridPlot(Widget):
|
|
|
19
19
|
self._columns = columns
|
|
20
20
|
self._gap = gap
|
|
21
21
|
|
|
22
|
-
if len(data) > 0:
|
|
22
|
+
if len(data) > 0: # TODO: add the self.add_data([data:dict]) method
|
|
23
23
|
for plot_data in data:
|
|
24
24
|
if isinstance(plot_data, dict):
|
|
25
25
|
# self._widgets[plot_data['title']] = LinePlot(title=plot_data['title'], series=plot_data.get('series', []), show_legend=plot_data.get('show_legend', True))
|
|
@@ -88,7 +88,7 @@ class GridPlot(Widget):
|
|
|
88
88
|
:param x: x value
|
|
89
89
|
:type x: float | int
|
|
90
90
|
"""
|
|
91
|
-
plot_title, series_name = identifier.split("/")
|
|
91
|
+
plot_title, series_name = identifier.split("/", 1)
|
|
92
92
|
_, series = self._widgets[plot_title].get_series_by_name(series_name)
|
|
93
93
|
|
|
94
94
|
if series is not None:
|
supervisely/convert/converter.py
CHANGED
|
@@ -169,7 +169,7 @@ class ImportManager:
|
|
|
169
169
|
mkdir(local_path, remove_content_if_exists=True)
|
|
170
170
|
|
|
171
171
|
if is_dir:
|
|
172
|
-
files = self._api.storage.list(self._team_id, remote_path)
|
|
172
|
+
files = self._api.storage.list(self._team_id, remote_path, include_folders=False)
|
|
173
173
|
else:
|
|
174
174
|
files = [self._api.storage.get_info_by_path(self._team_id, remote_path)]
|
|
175
175
|
|
|
@@ -284,7 +284,7 @@ supervisely/app/widgets/grid_gallery_v2/__init__.py,sha256=47DEQpj8HBSa-_TImW-5J
|
|
|
284
284
|
supervisely/app/widgets/grid_gallery_v2/grid_gallery_v2.py,sha256=6ldBYMnT1B4GXHHttP_JkWVCvKxK2pI-ofqeU7aMNpQ,9117
|
|
285
285
|
supervisely/app/widgets/grid_gallery_v2/template.html,sha256=eokcONj7KxH8zi1EzMLpvK6sF-txAdeixkKVjYTN-6s,566
|
|
286
286
|
supervisely/app/widgets/grid_plot/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
287
|
-
supervisely/app/widgets/grid_plot/grid_plot.py,sha256=
|
|
287
|
+
supervisely/app/widgets/grid_plot/grid_plot.py,sha256=o3X3Crw2w8BFd8A2TxdzVl3EFYwFx9NVB1sDByAhJHM,4846
|
|
288
288
|
supervisely/app/widgets/grid_plot/template.html,sha256=uitOlYgw1WmJWBX7t7WLhgA6ffBu29e0SpuZngLeUq0,21
|
|
289
289
|
supervisely/app/widgets/heatmap_chart/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
290
290
|
supervisely/app/widgets/heatmap_chart/heatmap_chart.py,sha256=ivTDffD8DOrqNjn9fjF8BXfOqCEPFuCv-6sBHHxSCTs,4390
|
|
@@ -555,7 +555,7 @@ supervisely/collection/key_indexed_collection.py,sha256=x2UVlkprspWhhae9oLUzjTWB
|
|
|
555
555
|
supervisely/collection/str_enum.py,sha256=Zp29yFGvnxC6oJRYNNlXhO2lTSdsriU1wiGHj6ahEJE,1250
|
|
556
556
|
supervisely/convert/__init__.py,sha256=gRTV93OYJPI3FNfy78HO2SfR59qQ3FFKFSy_jw1adJ8,2571
|
|
557
557
|
supervisely/convert/base_converter.py,sha256=1Fm31rm2eBjwfN0hYvCBZ5fr9omU10k5sKHttSlCFpE,18127
|
|
558
|
-
supervisely/convert/converter.py,sha256=
|
|
558
|
+
supervisely/convert/converter.py,sha256=tWxTDfFv7hwzQhUQrBxzfr6WP8FUGFX_ewg5T2HbUYo,8959
|
|
559
559
|
supervisely/convert/image/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
560
560
|
supervisely/convert/image/image_converter.py,sha256=r-qdhuwOsk727mXIM26ucQhkoIKigu1M0BF-tw9IfGg,10321
|
|
561
561
|
supervisely/convert/image/image_helper.py,sha256=RkBAyxxXmDG1Z5WFuO9kBDK8MN1Kl7Z25DX9-CwZ7OI,3647
|
|
@@ -997,9 +997,9 @@ supervisely/worker_proto/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZ
|
|
|
997
997
|
supervisely/worker_proto/worker_api_pb2.py,sha256=VQfi5JRBHs2pFCK1snec3JECgGnua3Xjqw_-b3aFxuM,59142
|
|
998
998
|
supervisely/worker_proto/worker_api_pb2_grpc.py,sha256=3BwQXOaP9qpdi0Dt9EKG--Lm8KGN0C5AgmUfRv77_Jk,28940
|
|
999
999
|
supervisely_lib/__init__.py,sha256=7-3QnN8Zf0wj8NCr2oJmqoQWMKKPKTECvjH9pd2S5vY,159
|
|
1000
|
-
supervisely-6.73.
|
|
1001
|
-
supervisely-6.73.
|
|
1002
|
-
supervisely-6.73.
|
|
1003
|
-
supervisely-6.73.
|
|
1004
|
-
supervisely-6.73.
|
|
1005
|
-
supervisely-6.73.
|
|
1000
|
+
supervisely-6.73.225.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
1001
|
+
supervisely-6.73.225.dist-info/METADATA,sha256=oS0A-4lJ3n2xZcXc0n7SEXjpkQjY3e0WC5OMYDa4lRk,33150
|
|
1002
|
+
supervisely-6.73.225.dist-info/WHEEL,sha256=P9jw-gEje8ByB7_hXoICnHtVCrEwMQh-630tKvQWehc,91
|
|
1003
|
+
supervisely-6.73.225.dist-info/entry_points.txt,sha256=U96-5Hxrp2ApRjnCoUiUhWMqijqh8zLR03sEhWtAcms,102
|
|
1004
|
+
supervisely-6.73.225.dist-info/top_level.txt,sha256=kcFVwb7SXtfqZifrZaSE3owHExX4gcNYe7Q2uoby084,28
|
|
1005
|
+
supervisely-6.73.225.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|