Initial addition of Python scripts

This commit is contained in:
J Alan Brogan
2012-10-26 17:35:08 +01:00
parent 90eb4a7b2a
commit 5462c033ab
27 changed files with 3794 additions and 1 deletions

14
grouprun.py Normal file
View File

@ -0,0 +1,14 @@
from workspace import workspace
class GroupRun(object):
def __init__(self):
self.name = 'xxx'
self.maximumNumberOfRuns = 1000
self.runStrings = []
self.answers = []
self.scores = [0] * 100
self.initial = workspace.initial
self.modified = workspace.modified
self.target = workspace.target
groupRun = GroupRun()