from src.app import handler import json import os # Load event from sample_event.json sample_event_path = os.path.join(os.path.dirname(__file__), 'tests', 'sample_event.json') with open(sample_event_path, 'r') as f: event = json.load(f) # Context (mock or use an empty object) context = {} # Run the handler response = handler(event, context) print('RESPONSE:', response)