ADM-Purchasing-Tools / app /exporter.py
abdulsalam2121
Add automation bot with Flask and Playwright
5b29309
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)