diff --git a/example/createDB.py b/example/createDB.py index 8e32e82..12edbe6 100755 --- a/example/createDB.py +++ b/example/createDB.py @@ -1,26 +1,26 @@ #!/usr/bin/env python3 # First we need to set the python headers and # to import the blackdynamite modules import BlackDynamite as BD # Then you have to create a generic black dynamite parser # and parse the system (including the connection parameters and credentials) parser = BD.bdparser.BDParser() params = parser.parseBDParameters() # Then we can connect to the black dynamite database -base = BD.base.Base(**params) +base = BD.base.Base(**params, creation=True) # Then you have to define the parametric space (the job pattern) myjob_desc = BD.job.Job(base) myjob_desc.types["param1"] = int myjob_desc.types["param2"] = float myjob_desc.types["param3"] = str # Then you have to define the run pattern myruns_desc = BD.run.Run(base) myruns_desc.types["compiler"] = str # Then we request for the creation of the database base.createBase(myjob_desc, myruns_desc, **params) diff --git a/example/launch.sh b/example/launch.sh index 828a305..f3f0b57 100644 --- a/example/launch.sh +++ b/example/launch.sh @@ -1,9 +1,9 @@ #!/bin/bash echo 'here is the job' echo __BLACKDYNAMITE__id__ echo __BLACKDYNAMITE__param1__ echo __BLACKDYNAMITE__param2__ echo __BLACKDYNAMITE__param3__ -python ./doIt.py +python3 ./doIt.py