d6t/d6tflow

Task type to output txt files.

NeuroWinter opened this issue · 2 comments

I am currently working with AWS SageMaker, and it requires a text file to be uploaded as the data.

Would we be able to implement a Task that will output a simple text file?

Try this

class TaskTXTPandas(d6tflow.tasks.TaskCSVPandas):
    target_ext = 'txt'

class YourTask(TaskTXTPandas):
    def run(self):
        pass

Closing for now, reopen if it doesnt work