Scripting
>>
Python
>>
Examples
>>
Warnings
>>
How to disable specific warnings such as DeprecationWarning
import warnings
warnings.filterwarnings("ignore", category=DeprecationWarning)
Please enable JavaScript to view the
comments powered by Disqus.