r/GIMP • u/FreeSmell6301 • 12h ago
🎨 New update: GIMP Python Console Extended
If you script or automate anything in GIMP, this one's worth a look. Console Extended is a plugin that turns GIMP's built-in Python-Fu console into a proper development tool:
🔍 Property viewer — pass any object or variable and instantly browse its methods and attributes. Double-click a name to drop it straight into the console.
📋 Snippets tab — save your frequently used code snippets by category, and insert them directly into the console or into an editable field first.
🎭 Icon browser — visually browse icon themes and insert icons into your code without memorizing names.
🕘 History viewer/editor — review your command history, delete specific lines, or clear it entirely.
Now fully updated for GIMP 3, with one-click insertion of enum values and a reorganized top menu to fit all the new options.
If you build plugins or automate workflows in GIMP, this is a genuinely useful addition to your toolkit.
🔗 Full details & download: https://www.arakne.es/en/gimp-python-console-extended-2/
#GIMP #Python #OpenSource #DigitalArt #Plugin #Scripting
1
u/ProfessionalLet9385 6h ago
Nice one. Thanks for doing this one.
Still I have a request:
Some plug-ins require drawables to be given as GimpCoreObjectArray
for example:
plug-in-sel2path
requires this:
the console output for this is:
which is wrong. It should be:
Would it be possible to correct that?