Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/overfl0/idapython-pycharm-setup
How to setup Pycharm to run scripts in IDA using the Run menu (or a keybind)
https://github.com/overfl0/idapython-pycharm-setup
Last synced: about 1 month ago
JSON representation
How to setup Pycharm to run scripts in IDA using the Run menu (or a keybind)
- Host: GitHub
- URL: https://github.com/overfl0/idapython-pycharm-setup
- Owner: overfl0
- License: mit
- Created: 2022-06-23T23:50:13.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2024-06-03T23:12:41.000Z (7 months ago)
- Last Synced: 2024-06-04T01:37:56.772Z (7 months ago)
- Language: Python
- Size: 216 KB
- Stars: 32
- Watchers: 1
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# IDAPython-pycharm-setup
How to setup Pycharm to run scripts in IDA using the Run menu (or a keybind)This is just a placeholder Readme. FIXME: Improve me
## Running your code directly from PyCharm
Note: you need to install and configure [IPyIDA](https://github.com/eset/ipyida) first.
TL;DR: Set the pycharm_wrapper.py file as as Run/Debug Configuration template
using the appropriate options and then just use Shift+F10 to (re-)run your
python script in IDA while seeing the output in a separate terminal.![](template.png)
## Configuring autocompletion
Open the settings window, navigate to your interpreter and add IDAPython
directory to the interpreter paths![](paths.png)
Autocompletion and docstrings in PyCharm should now be working!
![](autocompletion.png)
![](docstring.png)