11 lines
249 B
Python
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__))
|