我在我的python代码中使用Paramiko(对于sftp)。除了我每次导入或调用paramiko函数时,一切正常。这个警告会显示出来:
C:\Python26\lib\site-packages\Crypto\Util\randpool.py:40: RandomPool_Deprecation
Warning: This application uses RandomPool, which is BROKEN in older releases. S
ee http://www.pycrypto.org/randpool-broken
RandomPool_DeprecationWarning)
我知道这与Paramiko正在使用PyCrypto的一些不推荐的功能这一事实有关。
我的问题是,有没有办法以编程方式抑制此警告? 我试过这个:
warnings.filterwarnings(action='ignore', \
category=DeprecationWarning, module='paramiko')
甚至这个:
warnings.filterwarnings(action='ignore', \
category=DeprecationWarning, module='randpool')
在'import paramiko'语句之前和paramiko特定的函数调用之前,但没有任何作用。无论如何,这个警告都会出现。 如果有帮助,这是第三方库中打印警告的代码:
在randpool.py中:
from Crypto.pct_warnings import RandomPool_DeprecationWarning
import Crypto.Random
import warnings
class RandomPool:
"""Deprecated. Use Random.new() instead.
See http://www.pycrypto.org/randpool-broken
"""
def __init__(self, numbytes = 160, cipher=None, hash=None, file=None):
warnings.warn("This application uses RandomPool, which is BROKEN in older releases. See http://www.pycrypto.org/randpool-broken",
RandomPool_DeprecationWarning)
如果您知道解决此问题的方法,请帮我关闭此警告。
答案 0 :(得分:34)
最简单的方法是警告模块建议here:
with warnings.catch_warnings():
warnings.simplefilter("ignore")
import paramiko
答案 1 :(得分:4)
仅过滤特定警告:
with warnings.catch_warnings():
warnings.simplefilter('ignore', SpecificWarningObject)
#do something that raises a Warning
答案 2 :(得分:3)
module
的{{1}}参数采用区分大小写的正则表达式,该表达式应与标准模块名称完全匹配,因此
warnings.filterwarnings
或
warnings.filterwarnings(
action='ignore',
category=DeprecationWarning,
module=r'.*randpool'
)
应该工作。如果出于某种原因warnings.filterwarnings(
action='ignore',
category=DeprecationWarning,
module=r'Crypto\.Utils\.randpool'
)
不是RandomPool_DeprecationWarning
的子类,则可能需要显式编写DeprecationWarning
而不是RandomPool_DeprecationWarning
。
在调用脚本时,还可以通过将DeprecationWarning
选项传递给解释器来禁用命令行警告,如下所示:
-W
$ python -W ignore::RandomPool_DeprecationWarning:Crypto.Utils.randpool: my_script.py
采用-W
格式的过滤器,此时action:message:category:module:lineno
必须与发出警告的(完全合格的)模块名称完全匹配。
请参见https://docs.python.org/2/library/warnings.html?highlight=warnings#the-warnings-filter和https://docs.python.org/2/using/cmdline.html#cmdoption-w
答案 3 :(得分:0)
最灵活的方法是将warnings.filterwarnings()与warnings.catch_warnings()上下文管理器组合在一起。这样,您可以发挥filterwarnings
的灵活性,但是仅在with
块内部应用过滤:
import warnings
from Crypto.pct_warnings import RandomPool_DeprecationWarning
with warnings.catch_warnings():
warnings.filterwarnings(
action='ignore',
category=RandomPool_DeprecationWarning,
message='This application uses RandomPool, which is BROKEN in older releases')
# Do stuff that causes the warning