【发布时间】:2022-09-24 00:03:32
【问题描述】:
我已经用 pip 安装了 djangorestframework-simplejwt,所以我配置了 settings.py 文件以使用它,但是,当我尝试导入包时,它没有显示在可导入的包列表中。
\'DEFAULT_AUTHENTICATION_CLASSES\': (
\'rest_framework.authentication.SessionAuthentication\',
\'rest_framework.authentication.BasicAuthentication\',
\'rest_framework_simplejwt.authentication.JWTAuthentication\',
),
进口清单:
谁能帮我?
标签: django jwt django-rest-framework-simplejwt