Skip to content
Snippets Groups Projects
Verified Commit b4f806db authored by David Beniamine's avatar David Beniamine
Browse files

Housekeeping example

parent 53461786
No related branches found
No related tags found
No related merge requests found
...@@ -10,6 +10,7 @@ data/ ...@@ -10,6 +10,7 @@ data/
mydata.py # Python script exposing the following methods mydata.py # Python script exposing the following methods
# extractLastData() -> scraps the last data and return the downloaded file path # extractLastData() -> scraps the last data and return the downloaded file path
# upload_data(path) -> upload data contained in path # upload_data(path) -> upload data contained in path
# house_keeping() -> runs house_keeping for data
# get_sample() -> return a sample data for debugging pupose # get_sample() -> return a sample data for debugging pupose
# get_name() -> return the importer name # get_name() -> return the importer name
# get_desc() -> return the importer description # get_desc() -> return the importer description
......
...@@ -16,3 +16,7 @@ def get_last_import_info(): ...@@ -16,3 +16,7 @@ def get_last_import_info():
def upload_data(path): def upload_data(path):
print(path) print(path)
def house_keeping():
return "House keeping done"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment