himena.profile
AppProfile
Model of a profile.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
name
|
str
|
Name of the profile. |
'default'
|
version
|
str
|
Version of this profile created. |
'0.0.10.dev0'
|
plugins
|
list[str]
|
List of plugins to load. |
['himena_builtins.qt.console', 'himena_builtins.qt.explorer', 'himena_builtins.qt.favorites', 'himena_builtins.qt.history', 'himena_builtins.qt.output', 'himena_builtins.qt.plot', 'himena_builtins.qt.array', 'himena_builtins.qt.basic', 'himena_builtins.qt.dataframe', 'himena_builtins.qt.image', 'himena_builtins.qt.ipynb', 'himena_builtins.qt.rois', 'himena_builtins.qt.stack', 'himena_builtins.qt.table', 'himena_builtins.qt.text', 'himena_builtins.tools.array', 'himena_builtins.tools.conversions', 'himena_builtins.tools.dataframe', 'himena_builtins.tools.dict', 'himena_builtins.tools.image', 'himena_builtins.tools.others', 'himena_builtins.tools.plot', 'himena_builtins.tools.table', 'himena_builtins.tools.text', 'himena_builtins.io', 'himena_builtins.new', 'himena_builtins.user_modifications']
|
theme
|
str
|
Theme to use. |
'light-green'
|
startup_commands
|
list[tuple[str, Optional[dict[str, Any]]]]
|
Startup commands that will be executed when the app starts. |
<dynamic>
|
keybinding_overrides
|
list[KeyBindingOverride]
|
Built-in mutable sequence. If no argument is given, the constructor creates a new empty list. The argument must be an iterable if specified. |
<dynamic>
|
Source code in src\himena\profile.py
98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 |
|
default(save=False)
classmethod
Return the default profile.
Source code in src\himena\profile.py
137 138 139 140 141 142 143 |
|
from_json(path)
classmethod
Construct an AppProfile from a json file.
Source code in src\himena\profile.py
122 123 124 125 126 127 128 129 130 131 132 133 134 135 |
|
profile_path()
Path to this profile.
Source code in src\himena\profile.py
154 155 156 |
|
save(path=None)
Save profile as a json file.
Source code in src\himena\profile.py
145 146 147 148 149 150 151 152 |
|
update_plugin_config(plugin_id, **kwargs)
Update the config of the plugin specified by plugin_id
Source code in src\himena\profile.py
185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 |
|
with_keybinding_override(key, command_id)
Return a new profile with new keybind overrides.
Source code in src\himena\profile.py
170 171 172 173 174 175 176 177 178 179 180 181 182 183 |
|
with_name(name)
Return a new profile with a new name.
Source code in src\himena\profile.py
158 159 160 |
|
with_plugin_configs(configs)
Return a new profile with new plugin configs.
Source code in src\himena\profile.py
166 167 168 |
|
with_plugins(plugins)
Return a new profile with new plugins.
Source code in src\himena\profile.py
162 163 164 |
|
KeyBindingOverride
data_dir()
Get the user data directory.
Source code in src\himena\profile.py
28 29 30 31 32 |
|
new_app_profile(name)
Create a new profile.
Source code in src\himena\profile.py
242 243 244 245 246 247 248 |
|
patch_user_data_dir(path)
Change the user data directory to avoid pytest updates the local state.
Source code in src\himena\profile.py
16 17 18 19 20 21 22 23 24 25 |
|
remove_app_profile(name)
Remove an existing profile.
Source code in src\himena\profile.py
251 252 253 254 |
|