In examples/data_cleaning_and_lambda.md section 5. Lambda functions (aka Python UDFs) and ApplyMapping, there's call to DynamicFrame.fromDF() on line 222, but it seems like the class DynamicFrame wasn't imported as part of the boiler plater. I added from awsglue.dynamicframe import DynamicFrame and everything in the sample worked cleanly. Thanks for all the work on these. They're super helpful
In examples/data_cleaning_and_lambda.md section 5. Lambda functions (aka Python UDFs) and ApplyMapping, there's call to
DynamicFrame.fromDF()
on line 222, but it seems like the class DynamicFrame wasn't imported as part of the boiler plater. I addedfrom awsglue.dynamicframe import DynamicFrame
and everything in the sample worked cleanly. Thanks for all the work on these. They're super helpful