forked from Maaphoo/Retr3d
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpart.py
51 lines (38 loc) · 995 Bytes
/
part.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
from ConfigParser import SafeConfigParser
import abc
__author__ = 'Master'
class Part(object):
__metaclass__ = abc.ABCMeta
@abc.abstractmethod
def __init__(self):
self.name = "Part"
self.neededInputs = []
@abc.abstractproperty
def __author__(self):
return
@abc.abstractproperty
def __version__ (self):
return
@abc.abstractproperty
def __status__(self):
return
@abc.abstractproperty
def __contact__(self):
return
@abc.abstractproperty
def neededInputs(self):
return
@abc.abstractproperty
def dependencies(self):
return
@abc.abstractproperty
def printed(self):
return
def defineVariables(self):
parser = SafeConfigParser()
parser.read('config.ini')
for input in self.neededInputs:
exec ("self." + input[0] + "=" + parser.get(self.name, input[0]))
@abc.abstractmethod
def draw(self):
pass