Page MenuHomec4science

createDB.py
No OneTemporary

File Metadata

Created
Sat, Oct 19, 19:53

createDB.py

#!/usr/bin/env python
#First we need to set the python headers and to import the \blackdynamite modules
from BlackDynamite import base
from BlackDynamite import run
from BlackDynamite import job
from BlackDynamite import bdparser
#Then you have to create a generic black dynamite parser
#and parse the system (including the connection parameters and credentials)
parser = bdparser.BDParser()
params = parser.parseBDParameters()
#Then we can connect to the black dynamite database
base = base.Base(**params)
#Then you have to define the parametric space (the job pattern)
myjob_desc = 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 = 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