Cómo avisar a la deprecación en Python
import warnings
warnings.filterwarnings("ignore", category=DeprecationWarning)
Jack Roy
import warnings
warnings.filterwarnings("ignore", category=DeprecationWarning)