"""Development execution context for lambda code.""" import pprint from dotenv import load_dotenv load_dotenv() printer = pprint.PrettyPrinter(indent=4) def run(): """Lambda entry point.""" from src.app import handler execution_result = handler({'clear_index': True, 'update_products': True}, None) print('RESULT:') printer.pprint(execution_result) if __name__ == '__main__': run()