3
INFO:Uvicorn running on http://0.0.0.0:8000 (Press CTRL+C to quit) 
INFO:Started reloader process [27528] using statreload
C:Python\Python39\lib\site-packages\jose\backends\cryptography_backend.py:18:
CryptographyDeprecationWarning: int_from_bytes is deprecated, use int.from_bytes 
instead from cryptography.utils import int_from_bytes, int_to_bytes 
INFO: Started server process [8912]
INFO: Waiting for application startup. 
INFO: Application startup complete.

我是 FastAPI 的新手,因为我在项目中实现 JWT 令牌,API 正在正常工作,但每次启动服务器时都会显示此警告。

我已经从 jose 导入了 jwt,从 passlib.context python 版本 3.9 导入了 CryptContext

我真的很想知道这背后的原因是什么!

4

1 回答 1

3

弃用警告是由python-jose库如何从字节加载整数值引起的。这与 fastapi 无关,但您正在使用的库中存在问题。但是,该问题已在python-jose五天前(2021-04-29)修复,并将在下一个版本中出现。

您可以在 Github 上看到提交中的更改。现在您可以忽略警告,但是一旦python-jose发布了升级版本,您应该升级到新版本。

于 2021-05-04T08:47:46.270 回答