python.exe : d:\Lotus\main_window\lib\256qianming.py:33: DeprecationWarning: PKCS#12 support in pyOpenSSL is deprecated. You should use the APIs in cryptography.
时间: 2024-02-29 22:51:26 浏览: 167
QianMing.zip
这是一个 DeprecationWarning,表示在 pyOpenSSL 中使用 PKCS#12 已经被弃用,建议使用 cryptography 库的 API。这个警告不会影响代码的执行,但是建议你更新代码,以便使用最新的 API。如果你不想看到这个警告,可以在代码开头添加以下代码:
```python
import warnings
warnings.filterwarnings("ignore", category=DeprecationWarning)
```
这样可以忽略 DeprecationWarning 的警告。但是建议你还是更新代码,以便使用最新的 API。
阅读全文