Python flask.ext.mysql is deprecated?

前端 未结 2 1176
暖寄归人
暖寄归人 2020-12-06 14:17

When I run from flask.ext.mysql import MySQL I get the warning Importing flask.ext.mysql is deprecated, use flask_mysql instead.

So I inst

2条回答
  •  刺人心
    刺人心 (楼主)
    2020-12-06 14:57

    flask.ext.X is the old form to import a Flask extension, it is deprecated since Flask v0.10. The new way is to use flask_X. That's why you got the first warning.

    But apparently, Flask-MySQL does not update it's name form and use the flaskext as the package name (chedck it on GitHub). That's why you got the second warning.

提交回复
热议问题