I don’t want warnings whose message contains “property” to be printed. I know that I can ignore a warning by specifying its whole message with:
JavaScript
x
4
1
import warnings
2
3
warnings.filterwarnings("ignore", message="All message displayed in console.")
4
I need something like:
JavaScript
1
2
1
warnings.filterwarnings("ignore", message="*property*")
2
I also know that I can disable warnings for a specific part of the code with:
JavaScript
1
6
1
import warnings
2
3
with warnings.catch_warnings():
4
warnings.simplefilter("ignore")
5
function_that_causes_warnings()
6
Advertisement
Answer
The message parameter of filterwarnings
is a regular expression, therefore you should be able to use
JavaScript
1
2
1
warnings.filterwarnings("ignore", message=".*property.*")
2
Where .*
matches zero or more occurrences of any character.