Pycharm: Code completion not giving recommendations

15,629

Solution 1

As Python is a dynamically typed language, you need to ensure it can work out what type things are, and inspect on the libraries on your system correctly. Try to make sure it's obvious what type the object is in your code.

One good way as of PyCharm 2.7 (back when versions were numbers) is to enable runtime type detection - PyCharm hooks into your program while it runs (while debugging), and checks the types of variables as they are used.

You can enable this by going to settings, going to the "Build, Execution, Deployment" section and then the "Python Debugger" subsection and enabling "Collect run-time types information for code insight".

The settings screen of PyCharm open to show the relevant setting.

Obviously it is worth noting that this isn't perfect - if you make changes, this won't be updated til the code is executed, and it can only tell you about values it has seen - other code paths you haven't tried could set other types.

You can also 'tell' PyCharm by using Epydoc or Sphinx style docstrings that contain information about parameter and return value types. PyCharm will use these to improve it's inspections.

Python also gained support for function annotations as of Python 3. These can be used for type hints as per PEP 484. See the typing module for more. This is more formal, so it can also be used for tools like mypy which a type checker that can programmatically check these types for consistency, giving Python a TypeScript-style optional static typing.

Solution 2

Python is a dynamically typed language, which means that the "get" function does not declare its return type. When you're entering code in IPython or in the PyCharm console, the code is actually being executed, and it's possible to inspect the object instance in the running interpreter and to get the list of its methods. When you're entering code in PyCharm or in any other Python IDE, it is not executed, and it's only possible to use static analysis to infer the return type of the method. This is not possible in all cases.

Solution 3

PyCharm has no idea what the dict contains if you fill it dynamically. So you have to hint PyCharm about the keys of dict beforehand. Prodict does exactly this to hint PyCharm, so you get code completion.

First, if you want to be able to access the response object, then you have to get a json response and convert it to dict. That's achieved with .json() method of requests like this:

response = requests.get("https://some.restservice.com/user/1").json()

OK, we loaded it to a dict object, now you can access keys with bracket syntax:

print(response['name'])

Since you ask for auto code completion, you certainly need to hint PyCharm about the keys of dict. If you already know the respone schema, you can use Prodict to hint PyCharm:

class Response(Prodict):
    name: str
    price: float

response_dict = requests.get("https://some.restservice.com/user/1").json()

response = Response.from_dict(response_dict)
print(response.name)
print(response.price)

In the above code, both name and price attributes are auto-complated.

If you don't know the schema of the response, then you can still use dot-notation to access dict attributes like this:

response_dict = requests.get("https://some.restservice.com/user/1").json()
response = Prodict.from_dict(response_dict)
print(response.name)

But code-completion will not be available since PyCharm can't know what the schema is.

What's more is, Prodict class is derived directly from dict, so you can use it as dict too.

This is the screenshot from Prodict repo that illustrates code completion:

Prodict code completion

Disclaimer: I am the author of Prodict.

Share:
15,629
user1265125
Author by

user1265125

Updated on July 08, 2022

Comments

  • user1265125
    user1265125 almost 2 years

    Say I'm working with the 'requests' python library.

    req = requests.get("http://google.com")
    

    Now after this, if I type req., I'm supposed to get a list of all methods I can access. But for some reason I don't, even if I manually press ctrl-space.

    If I try this in ipython, I get autocomplete recommendations. Even if I try it via the built in python console in pycharm, I get recommendations.

    Why's this happening?

  • pascalwhoop
    pascalwhoop about 6 years
    If this feature does what I think it does ( collecting information about types that a language like python inherently doesn't offer and then help complete methods while coding) then PyCharm has, just with this, beaten any other IDE I know. It's all the goodness of typed languages to get IDE feedback while still allowing all the cool things of loosely typed languages.
  • OfirD
    OfirD about 5 years
    Updated location for PyCharm 2018.3: File > Settings > Build, Execution, Deployment > Python Debugger
  • Gareth Latty
    Gareth Latty about 5 years
    @HeyJude Thanks for the note. I have updated the post to show the new location.
  • user3579222
    user3579222 over 4 years
    I am from the Java world and new to Python. I am using PyCharm and was writing my first application where I used Amazon's boto3 library. As soon as I got an object from a method of that library I was forced to look at the documentation in order to identify its properties and methods (as the PyCharm is not recommending anything). Really annoying... How do you debug in python? I was always running the code to identify "attribute not existing" errors.