PyCharm resolving - flask.ext.sqlalchemy vs flask_sqlalchemy

后端 未结 3 676
清歌不尽
清歌不尽 2020-12-14 16:54

If I use the following format in my application, everything works, except PyCharms resolving / autocomplete feature:

from flask.ext.sqlalchemy import SQLAlch         


        
3条回答
  •  死守一世寂寞
    2020-12-14 17:45

    The flask.ext namespace is a transistion namespace, see the Extension Import Transition section of the Flask Extension Development docs:

    For a while we recommended using namespace packages for Flask extensions. This turned out to be problematic in practice because many different competing namespace package systems exist and pip would automatically switch between different systems and this caused a lot of problems for users.

    and

    Flask extensions should urge users to import from flask.ext.foo instead of flask_foo or flaskext_foo so that extensions can transition to the new package name without affecting users.

    So to transition between versions, the flask.ext alias was added, which will automatically try to import flask_[name] packages when importing flask.ext.[name]. But that transition is now moot; you no longer will find packages that still rely solely on flask.ext.

    As such, it is perfectly fine to use the actual module name and have PyCharm autocomplete the module contents.

    You only really have to use flask.ext if you are still using an older version of the extension and need to be future compatible. That future is already here.

提交回复
热议问题