refactor/data_backend #12

Merged
jkuhl merged 36 commits from refactor/data_backend into develop 2025-12-04 15:47:45 +01:00
3 changed files with 20 additions and 9 deletions
Showing only changes of commit 44ab402c6c - Show all commits

start refactor for data backend by only improting datalad into one submodule

Justus Kuhlmann 2025-11-28 16:13:53 +01:00
Signed by: jkuhl
GPG key ID: 00ED992DD79B85A6

View file

@ -0,0 +1,7 @@
import .datalad as dl
class DataBackend:
@abstractmethod
def get_file(self, data, file):
pass

View file

@ -0,0 +1,13 @@
import datalad.api as dl
import os
from corrlib.data_backend.databackend import
def DLBackend()
def get_file(path, file):
if file == "backlogger.db":
print("Downloading database...")
else:
print("Downloading data...")
dl.get(os.path.join(path, file), dataset=path)
print("> downloaded file")

View file

@ -17,13 +17,4 @@ def m2k(m):
def k2m(k):
return (1/(2*k))-4
def get_file(path, file):
if file == "backlogger.db":
print("Downloading database...")
else:
print("Downloading data...")
dl.get(os.path.join(path, file), dataset=path)
print("> downloaded file")