Go to a specific module in PyCharm

I use PyCharm as my IDE to work with Django. So far it has been very helpful. I can go to a specific (project) file with Ctrl+Shift+N , I can go to any class definition with Ctrl+N and go to any character with Ctrl+Shift+Alt+N

This is great, but lately I have seen that it would be very useful to also have a shortcut to go to a specific external (or project) module.

Is there any shortcut where I can go, for example: django.contrib and show the modules for inside the django.contrib or base64 package and show me the correspondence of the modules for base64 , as simple as I can go to a specific, character, class , file?

Thank you in advance

+4
source share
1 answer

I feel your problem. All you have to do is Ctrl + CLICK to determine. Please note, however, that this does not provide actual files. I mean, this does not redirect you to the actual function, but rather the skeleton of the function.

If you want to go to the actual function, you will need to click on the external libraries in the sidebar and search.

Hope this helps.

+1
source

Source: https://habr.com/ru/post/1488372/


All Articles