Python Silent Decrecation -Warning

import warnings
warnings.filterwarnings("ignore", category=DeprecationWarning) 
DataDude