Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

turn off warning when import python

import warnings

with warnings.catch_warnings():
    warnings.filterwarnings("ignore",category=DeprecationWarning)
    import md5, sha

yourcode()
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #turn #warning #import #python
ADD COMMENT
Topic
Name
6+3 =