🌐
JetBrains
jetbrains.com › help › pycharm › viewing-reference-information.html
Code reference information | PyCharm Documentation
1 month ago - The Parameter Info popup shows the names of parameters in method and function calls. PyCharm automatically shows a popup with all available method signatures within 1 second (1000 milliseconds) after you type an opening bracket in the editor, or select a method from the suggestion list.
🌐
JetBrains
jetbrains.com › help › pycharm › viewing-structure-and-hierarchy-of-the-source-code.html
Source code hierarchy | PyCharm Documentation
1 month ago - PyCharm enables you to examine the hierarchy of classes, methods, and calls in the Hierarchy tool window, and explore the structure of source files in the Structure tool window.
Discussions

How do I get PyCharm to show method signatures and documentation in the Python/IPython console and the editor? - Stack Overflow
In IPython's QT console (on Windows 7), if I type: import scipy scipy.zeros( followed by Tab, it displays basic documentation for the method, like its signature, parameters, description, etc. In P... More on stackoverflow.com
🌐 stackoverflow.com
python - How to get all the available methods for a object in Pycharm (for ex. Pygame) - Stack Overflow
If Pycharm isn't giving you good suggestions, that's because it can't figure out what you're looking at. Python is duck typed. What a function takes or returns could be any type. But maybe you already know what it is. Pycharm's suggestions get better if you add type annotations for your functions ... More on stackoverflow.com
🌐 stackoverflow.com
See all methods and variables of class (including inherited)?
The structure window with “Show Inherited” and “Show Fields” selected should do what you want. https://www.jetbrains.com/help/pycharm/structure-tool-window-file-structure-popup.html#7663ccb6 More on reddit.com
🌐 r/pycharm
2
2
January 30, 2023
pycharm - How to display all the functions / api available in a class / file in python - Stack Overflow
not able to get that for python in pycharm. for example, I wanted to see all the functions available in the python List. More on stackoverflow.com
🌐 stackoverflow.com
🌐
JetBrains
jetbrains.com › help › pycharm › viewing-structure-of-a-source-file.html
View source file structure | PyCharm Documentation
September 12, 2025 - Visualize the structure of the current document and jump to file members
🌐
JetBrains
jetbrains.com › help › pycharm › structure-tool-window-file-structure-popup.html
Structure tool window, File structure popup | PyCharm Documentation
November 6, 2025 - View | Tool Windows | Structure or Alt+7 · This tool window displays the structure of a file currently opened in the editor and having the focus, or selected in the Project tool window
🌐
JetBrains
jetbrains.com › help › pycharm › find-usages-method-options.html
Find Usages. Method Options | PyCharm Documentation
October 8, 2024 - This section describes the controls for specifying Method Usage Search options in the Find Usages dialog · You can also open this dialog when you click in the Show Usages popup which lists all the occurrences of the symbol at caret
Find elsewhere
🌐
JetBrains
jetbrains.com › pycharm › guide › tips › parameter-info
View Parameter Info - PyCharm Guide
February 17, 2023 - So you stop, go look at the function, and come back to what you were doing. There's a better way. With your cursor in the parentheses, invoke Parameter Info ⌘P (macOS) / Ctrl+P (Windows/Linux). You get a tiny popup with the positional and keyword arguments, along with any default values. Bold is used to mark the current spot in the parameter list that your cursor is at.
🌐
Stack Overflow
stackoverflow.com › questions › 65492607 › how-to-display-all-the-functions-api-available-in-a-class-file-in-python
pycharm - How to display all the functions / api available in a class / file in python - Stack Overflow
I am very new to python and started using pycharm ide for development. How to display all the functions / API available in a class/file in python. e.g. like when we code in scala/java in ide wee get all the functions/ methods available for that class/object by just typing object_name.(dot) and it shows all the API.
🌐
JetBrains
intellij-support.jetbrains.com › hc › en-us › community › posts › 360000605590-How-do-I-browse-all-the-functions-in-a-project-
How do I browse all the functions in a project? – IDEs Support (IntelliJ Platform) | JetBrains
May 31, 2018 - >i can't tell you how many times i have wanted to browse the projects "api" to see if i could find an applicable function call i could use. Code completion? It will list available functions/classes.
🌐
Stack Overflow
stackoverflow.com › questions › 37031483 › pycharm-list-all-usages-of-all-methods-of-a-class
python - PyCharm: List all usages of all methods of a class - Stack Overflow
I would argue that the grouping should be done by groups of methods that have related functionalities, not by the usage. Doing the cleanup top-bottom might help you clean up other classes as well, while doing it with the original approach (group by usage - which is bottom-up) might create unnecessary coupling between code modules/classes that shouldn't be coupled. ... This is possible, but you have to deal with abstraction, otherwise Pycharm doesn't know the method in question belongs to your specific class.
🌐
JetBrains
intellij-support.jetbrains.com › hc › en-us › community › posts › 207063945-Dropdown-for-function-names-list
Dropdown for function names list – IDEs Support (IntelliJ Platform) | JetBrains
May 7, 2012 - I can reach function name list of a source file by Structure tool window, or I can search functions by Ctrl+Alt+Shift+N. Is it possible to reach the function names from a dropdown menu? It won't take too much space from the screen.
🌐
JetBrains
jetbrains.com › help › pycharm › settings-quick-lists.html
Quick Lists | PyCharm Documentation
A quick list is a popup that contains a custom set of PyCharm actions. Think of it as a custom menu or toolbar, for which you can assign a shortcut for quick access. You can create as many quick lists as necessary.
🌐
JetBrains
jetbrains.com › help › pycharm › viewing-definition.html
Definition and type definition | PyCharm Documentation
February 27, 2026 - In PyCharm, you can see where and how symbols, such as classes, fields, methods, functions, or tags are defined in your project.
🌐
JetBrains
jetbrains.com › help › pycharm › mastering-keyboard-shortcuts.html
PyCharm keyboard shortcuts | PyCharm Documentation
September 11, 2025 - If there is a group of actions that you often use, create a quick list to access them using a custom shortcut. For example, you can try using the following predefined quick lists: ... PyCharm provides a lot of typing assistance features, such as automatically adding paired tags and quotes, and detecting CamelHump words.
🌐
JetBrains
jetbrains.com › help › pycharm › part-3-finding-usages.html
Part 3. Find usages | PyCharm Documentation
August 14, 2024 - In some cases, viewing usages in the Find tool window seems inconvenient. PyCharm provides an action that shows usages as a list.