Source code for cowidev.grapher.db.utils.utils

from datetime import datetime


[docs]def export_timestamp(filename): with open(filename, "w") as f: f.write(datetime.utcnow().replace(microsecond=0).isoformat())