Files
bonobo/bonobo/examples/files/csv_handlers.py
2017-04-28 07:37:15 +02:00

11 lines
249 B
Python

import bonobo
from bonobo.commands.run import get_default_services
graph = bonobo.Graph(
bonobo.CsvReader(path='datasets/coffeeshops.txt'),
print,
)
if __name__ == '__main__':
bonobo.run(graph, services=get_default_services(__file__))