"""dev test for debugging""" import json from src.index import handler def main(): """Main function.""" event = json.loads(""" { "product": { "product_id": 3265177, "project_code": "9876543210", "project_id": 123456789, "project_name": "Project Name", "release_name": "Product Name", "upc": "1234567890", "vendor_id": 12345, "subaccount_id": null "artwork": { "bucket": "prod-orcd-catmusic-drop", "key": "6420565344274/6420565344274.tif", "filename": "6420565344274.tif", "ows_assets_filename": null } }, "asset_type": "cover", "execution_name": "test_execution_name", "state_machine_name": "sfn_name", "correlation_id": "1234" } """) print(handler(event, None)) if __name__ == '__main__': main()