second-automation-bot / app /exporter.py
abdulsalam2121
first commit
ec2ef5e
Raw
History Blame Contribute Delete
183 Bytes
from export_manager import ExportManager
def save_csv(records, output_file=None):
mgr = ExportManager(output_format="csv", output_file=output_file)
return mgr.save(records)