Python désactiver l'avertissement obsolète

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