Skip to content

Updated dsi features and deleted old code #136

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 7 commits into from
Jan 31, 2025
36 changes: 32 additions & 4 deletions dsi/backends/filesystem.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,27 @@ def put_artifacts(self, artifacts, kwargs) -> None:
pass

@abstractmethod
def get_artifacts(self, query):
def get_artifacts(self, query, kwargs):
pass

@abstractmethod
def inspect_artifacts(self):
def write_artifacts(self, artifacts, kwargs) -> None:
pass

@abstractmethod
def process_artifacts(self, query, kwargs):
pass

@abstractmethod
def inspect_artifacts(self, kwargs):
pass

@abstractmethod
def read_to_artifacts(self, kwargs):
pass

@abstractmethod
def find(self, query_object, kwargs):
pass


Expand Down Expand Up @@ -48,8 +64,20 @@ def __init__(self, filename) -> None:
def put_artifacts(self, artifacts, kwargs) -> None:
pass

def get_artifacts(self, query):
def get_artifacts(self, query, kwargs):
pass

def write_artifacts(self, artifacts, kwargs) -> None:
pass

def inspect_artifacts(self):
def process_artifacts(self, query, kwargs):
pass

def inspect_artifacts(self, kwargs):
pass

def read_to_artifacts(self, kwargs):
pass

def find(self, query_object, kwargs):
pass
Loading
Loading