Page MenuHomec4science

createDB.py
No OneTemporary

File Metadata

Created
Thu, May 2, 05:49

createDB.py

#!/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, 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)

Event Timeline