gmic-py
gmic-py copied to clipboard
gmic.run("help blur") produces no output (as do all other help commands...)
Running in standard python in a terminal, the simple above command produces no output at all.
To reproduce:
import gmic gmic.run("help blur")
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")
?
Er... looks as follows:
>>> import gmic
>>> gmic.run("verbose 1 help blur")
[gmic]-0./ Start G'MIC interpreter.
[gmic]-0./ End G'MIC interpreter.