How to Solve NameError: name 'copy_reg' is not defined

Solution: Import the 'copy_reg' module

# Add the following line to the top of your code
import copy_reg

 

For more information:
Python copy_reg