Metadata-Version: 2.3
Name: ida-settings
Version: 3.2.3
Summary: Fetch configuration values for IDA Pro plugins
Author: Willi Ballenthin
Author-email: Willi Ballenthin <wballenthin@hex-rays.com>
Requires-Dist: ida-hcli>=0.14.2
Requires-Python: >=3.10
Description-Content-Type: text/markdown

# ida-settings

ida-settings is a Python library used by IDA Pro plugins to fetch configuration values from the shared settings infrastructure.

During plugin installation, [hcli](https://hcli.docs.hex-rays.com/) prompts users for the configuration values and stores them in `ida-config.json`.
Subsequently, users can invoke hcli (or later, the IDA Pro GUI) to update their configuration.
This is the library that plugins use to fetch the configuration values.

For example, within an IDA Pro plugin:

```py
import ida_settings

api_key = ida_settings.get_current_plugin_setting("openai_key")
```

### API reference

```
def get_current_plugin_setting(key: str) -> str | bool
```

Fetch the setting value identified by `key`, raising `KeyError` if its not found.
This setting should be declared in the current plugin's `ida-plugin.json` file.

Changing of configuration values should be done via hcli or the IDA Pro GUI.
However, there are also `set`/`del`/`has`/`list` routines for programmatic access.


### Notes

- this library relies on the IDA Pro's specific plugin environment to identify the current plugin; therefore, this library doesn't work outside of IDA Pro.
- plugins shouldn't try to reach into `ida-config.json` themselves, because in the future, we may introduce cascading settings, a la VS Code.

## IDA Settings Editor Plugin

This repository also includes a graphical settings manager plugin for IDA Pro.

Install it with:

```bash
hcli plugin install ida-settings-editor
```

### Features

- Browse all plugins with settings
- Edit settings with appropriate UI controls
- Immediate validation and feedback
- Revert to defaults
- Dockable/floating window

### Usage

Open via:
- Edit → Plugins → Plugin Settings Manager
- View → Open subviews → Plugin Settings Manager
