Pycharm 5.0.4自动完成无法完全正常工作

时间:2016-05-02 02:02:34

标签: python import autocomplete beautifulsoup pycharm

我是新手,并使用pycharm 5.0.4进行python编码。我找到一些库,我的Pycharm不能自动弹出潜在的方法/类成员资格的帮助提示等。如下所示,汤应该有get_text()方法和其他方法,但IDE不会弹出菜单让我可以选择。

我确实看到其他人可以在他们的pycharm中使用它,我是否会错过任何设置?

谢谢,

Please see below graph showing that I didn't get the pop up menu when I need the hint

1 个答案:

答案 0 :(得分:1)

您可以通过内置的Pycharm "Type Hinting"使其工作。在type: list[Tag]的结果分配给变量的行中添加select内联注释:

enter image description here

请注意,在这种情况下您需要导入Tag类:

from bs4 import BeautifulSoup, Tag