13 lines
No EOL
326 B
Python
13 lines
No EOL
326 B
Python
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") |