Source code for supervisely.api.import_storage_api

# coding: utf-8

from supervisely.api.module_api import ModuleApiBase, ApiField


[docs] class ImportStorageApi(ModuleApiBase): """Work with internal import storage in Supervisely."""
[docs] def get_meta_by_hashes(self, hashes): """ """ response = self._api.post('import-storage.internal.meta.list', {ApiField.HASHES: hashes}) return response.json()