from ..mautic import MauticHelper import datetime def sync_customers(): print(datetime.datetime.now(), " *** START sync customers ") print() helper = MauticHelper() helper.sync() print(datetime.datetime.now(), " *** END sync customers ")