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?
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.
if will just detect methods or variables and... with write some part of it: File->Setting -> Editor -> General -> Code Completion in top of opened window remove [ Mach Case ] tick
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".
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 likemypy
which a type checker that can programmatically check these types for consistency, giving Python a TypeScript-style optional static typing.PyCharm has no idea what the
dict
contains if you fill it dynamically. So you have to hint PyCharm about the keys ofdict
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 ofrequests
like this:OK, we loaded it to a
dict
object, now you can access keys with bracket syntax: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:In the above code, both
name
andprice
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: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 asdict
too.This is the screenshot from Prodict repo that illustrates code completion:
Disclaimer: I am the author of Prodict.