Stan Soldatov

Results 9 issues of Stan Soldatov

Issue on the Python 3.12.2: ```python supervisely/init.py", line 3, in import pkg_resources # isort: skip ^^^^^^^^^^^^^^^^^^^^ ModuleNotFoundError: No module named 'pkg_resources' ``` Related: https://github.com/supervisely/issues/issues/4497

dependencies
discuss

Warning! Monkeypatching! Needs discuss.

discuss

Usage example: ```python import supervisely as sly api = sly.Api.from_env() example_image = "example.jpg" img: np.ndarray = sly.image.read(example_image) img_bytes: bytes = sly.image.write_bytes(img, sly.fs.get_file_ext(example_image)) dataset_id = 123 image_info = api.image.upload_bytes(dataset_id, "example.jpg", img_bytes)...

discuss

wontfix
in progress

Recreate hierarchical projects: ```python import supervisely as sly api = sly.Api.from_env() src_project_id = 123 dst_project_id = api.project.create("new_project", "images").id for src_ds, dst_ds in api.project.recreate(src_project_id, dst_project_id): print(f"Recreated dataset {src_ds.id} -> {dst_ds.id}") #...