# libtmux.Session._show_options_dict

- **Module:** libtmux.Session
- **Package:** libtmux
- **Language:** Python
- **Kind:** method
- **Source:** https://github.com/tmux-python/libtmux/blob/036c521c4b83ce6e434eb50afe2a0d08a6a05e46/src/libtmux/options.py#L888
- **Page:** https://libtmux.org/reference/py/libtmux-session-_show_options_dict/

```
libtmux.Session._show_options_dict(self, g: bool | None = False, global_: bool | None = False, scope: OptionScope | _DefaultOptionScope | None = DEFAULT_OPTION_SCOPE, include_hooks: bool | None = None, include_inherited: bool | None = None, quiet: bool | None = None) -> UntypedOptionsDict
```

Return dict of options for the target.

## Parameters

- `self`
- `g` (bool | None) — Use ``global_`` instead.
- `global_` (bool | None)
- `scope` (OptionScope | _DefaultOptionScope | None)
- `include_hooks` (bool | None)
- `include_inherited` (bool | None)
- `quiet` (bool | None)

## Example

```python
>>> import typing as t
>>> from libtmux.common import tmux_cmd
>>> from libtmux.constants import OptionScope
```

## Example

```python
>>> class MyServer(OptionsMixin):
...     socket_name = server.socket_name
...     def cmd(self, cmd: str, *args: object):
...         cmd_args: t.List[t.Union[str, int]] = [cmd]
...         if self.socket_name:
...             cmd_args.insert(0, f"-L{self.socket_name}")
...         cmd_args.insert(0, "-f/dev/null")
...         return tmux_cmd(*cmd_args, *args)
...
...     default_option_scope = OptionScope.Server
```

## Example

```python
>>> MyServer()._show_options_dict()
{...}
```

## Example

```python
>>> isinstance(MyServer()._show_options_dict(), dict)
True
```
