jake kara ‣ big-todo - make virtual TODO files ░ • Projects • Blog May 20, 2020 big-todo - make virtual TODO files I wrote a command-line utility to create a virtual TODO file by concatenating directory-level TODO files. • Here’s the GitHub repo • Here’s the PyPi page Documentation can be found in the GitHub repo, so I won’t reproduce it here. The code is just one 47-line .py file. It makes use of an interesting package called glob, which handles recursively finding all of the TODO files with the following one-liner: glob(os.path.join(parent, f"**/{basename}"))