Task type to output txt files.
NeuroWinter opened this issue · 2 comments
NeuroWinter commented
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?
d6tdev commented
Try this
class TaskTXTPandas(d6tflow.tasks.TaskCSVPandas):
target_ext = 'txt'
class YourTask(TaskTXTPandas):
def run(self):
pass
d6tdev commented
Closing for now, reopen if it doesnt work