Python отключить предупреждение.

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