gmic-py icon indicating copy to clipboard operation
gmic-py copied to clipboard

gmic.run("help blur") produces no output (as do all other help commands...)

Open mfeldt opened this issue 3 years ago • 2 comments

Running in standard python in a terminal, the simple above command produces no output at all.

To reproduce:

import gmic gmic.run("help blur")

mfeldt avatar Jul 25 '22 13:07 mfeldt

That's probably because by default, the verbosity level of the G'MIC interpreter for Python is set to 0. Maybe:

gmic.run("verbose 1 help blur")

?

dtschump avatar Jul 25 '22 14:07 dtschump

Er... looks as follows:

>>> import gmic
>>> gmic.run("verbose 1 help blur")
[gmic]-0./ Start G'MIC interpreter.
[gmic]-0./ End G'MIC interpreter.

mfeldt avatar Jul 26 '22 08:07 mfeldt