50

我在我的 python 代码(用于 sftp)中使用 Paramiko。一切正常,除了每次我导入或调用 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)

如果您知道解决此问题的方法,请帮我关闭此警告。

4

4 回答 4

48

最简单的方法是警告模块在这里建议:

with warnings.catch_warnings():
    warnings.simplefilter("ignore")
    import paramiko
于 2010-10-13T04:59:48.483 回答
18

module参数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

采用-Wformat 格式的过滤器,action:message:category:module:lineno此时module必须与引发警告的(完全限定的)模块名称完全匹配。

请参阅https://docs.python.org/2/library/warnings.html?highlight=warnings#the-warnings-filterhttps://docs.python.org/2/using/cmdline.html#cmdoption-w

于 2018-12-10T13:40:36.083 回答
15

要仅过滤特定警告:

with warnings.catch_warnings():
    warnings.simplefilter('ignore', SpecificWarningObject)

    #do something that raises a Warning
于 2017-09-15T18:20:17.750 回答
3

最灵活的方法是将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

于 2020-09-22T07:58:48.387 回答