Find and locate TODO items, save to csv and print to screen
As Functions
todos = find_todos('.', ext='py', comment_start='#', recursive=True)
show_todos(todos)
save_csv(todos, 'py')
As a class
path = "."
ext = "py"
td = "TODO"
comment = '#'
find = TodoLocater(path, ext, td, comment, recursive=True)
find.show_todos()