コード例 #1
0
class TableauExporter(Exporter):
    def __init__(self, config, plugin_config):
        Exporter.__init__(self, config, plugin_config)

    def open_to_file(self, schema, destination_file_path):
        self.e = TDEExport(destination_file_path, schema['columns'])

    def write_row(self, row):
        self.e.insert_array_row(row)

    def close(self):
        self.e.close()
コード例 #2
0
class TableauExporter(Exporter):
    def __init__(self, config, plugin_config):
        Exporter.__init__(self, config, plugin_config)

    def open_to_file(self, schema, destination_file_path):
        self.e = TDEExport(destination_file_path, schema['columns'])

    def write_row(self, row):
        self.e.insert_array_row(row)

    def close(self):
        print "TDE: Exported %d rows" % self.e.nrows
        self.e.close()
コード例 #3
0
class TableauExporter(Exporter):
    def __init__(self, config, plugin_config):
        Exporter.__init__(self, config, plugin_config)

    def open(self, schema):
        # Fairly ugly. We create and delete a temporary file while retaining its name
        with tempfile.NamedTemporaryFile(prefix="output", suffix=".tde", dir=os.getcwd()) as f:
            self.output_file = f.name
        print "Tmp file: %s" %  self.output_file
        self.e = TDEExport(self.output_file , schema['columns'])

    def write_row(self, row):
        self.e.insert_array_row(row)

    def close(self):
        self.e.close()
        upload_tde_file(self.output_file, self.config)
コード例 #4
0
 def open_to_file(self, schema, destination_file_path):
     self.e = TDEExport(destination_file_path, schema['columns'])
コード例 #5
0
 def open(self, schema):
     # Fairly ugly. We create and delete a temporary file while retaining its name
     with tempfile.NamedTemporaryFile(prefix="output", suffix=".tde", dir=os.getcwd()) as f:
         self.output_file = f.name
     print "Tmp file: %s" %  self.output_file
     self.e = TDEExport(self.output_file , schema['columns'])