def __init__(self):
     ImportPlugin.__init__(self)
     self.fields = [
         FieldCombo('direction', descr='Direction', items=['Columns', 'Rows'], editable=False),
         FieldText('sheet', descr='Sheet (defaults to first)'),
         FieldText('range', descr='Range (defaults to used range)'),
         FieldBool('header', descr='Treat first row/col as dataset names'),
     ]
Exemple #2
0
 def __init__(self):
     ImportPlugin.__init__(self)
     self.fields = []
Exemple #3
0
 def __init__(self):
     ImportPlugin.__init__(self)
     self.fields = [
         FieldFilename('channels', descr='Channels file (optional)'),
     ]
 def __init__(self):
     ImportPlugin.__init__(self)
     self.fields = [
         FieldText('query', descr='SQL query'),
     ]
Exemple #5
0
 def __init__(self):
     ImportPlugin.__init__(self)
     self.fields = [
         FieldFilename('channels', descr='Channels file (optional)'),
     ]