This attractive bit of python gadgetry will allow you to auto-generate new python files in Komodo. I use it to create a new “daily notes” file each day of work. It contains the to-do, reminder, and technical notes of each day. from datetime import datetime import os, os.path import komodo def create_file_by_date(dd, prefix=None): parts = [...]