PyCharm intellisense for boto3

前端 未结 8 1253
长发绾君心
长发绾君心 2021-02-18 15:49

having problems seeing full intellisense (code completion) options in PyCharm. working with python 3.4 on Windows. the suggests are partially working:

import bot         


        
8条回答
  •  感动是毒
    2021-02-18 16:32

    I love boto3, but I was also frustrated that every time I want to make a simple ad-hoc request I have to open boto3 documentation. So I wrote autoboto:

    https://pypi.org/project/autoboto/

    It doesn't just auto-complete. It also returns dataclasses which means that you don't have to look up the names of attributes of the returned objects. PyCharm will tell you what is available.

    At the moment, it's also probably very slow because of all the generic serialisation and deserialisation.

提交回复
热议问题