We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Running in standard python in a terminal, the simple above command produces no output at all.
To reproduce:
import gmic gmic.run("help blur")
The text was updated successfully, but these errors were encountered:
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")
?
Sorry, something went wrong.
Er... looks as follows:
>>> import gmic >>> gmic.run("verbose 1 help blur") [gmic]-0./ Start G'MIC interpreter. [gmic]-0./ End G'MIC interpreter.
No branches or pull requests
Running in standard python in a terminal, the simple above command produces no output at all.
To reproduce:
The text was updated successfully, but these errors were encountered: