A quick and dirty script to create Nuke Python file stubs to support auto-complete in text editors.
A stub file generator for Nuke & Hiero Python 3. Besides including the public API, the script will generate stubs for:
- Classes.
- Built-in methods.
- Constant.
- Arguments types.
- Return statements.
You can use the stub files inside the repository, but if you want to generate them, copy the nukestubsgen.py
file inside the Nuke Script Editor and run it.
When generating the stubs, it is preferable to use Nuke Studio, as doing it inside Nuke will cause the Hiero stubs to be incomplete.
Once done, you can find the stubs inside ~/.nuke/nuke-python-stubs/stubs
.
Using the stubs will vary based on your text editor since most of them have their way of adding stubs to the environment.
Alternatively, you can use Visual Studio Code NukeTools and call the Nuke Tools: Add Python Stubs
command.
The script tries to guess the data type by parsing the function signature/documentation. This method is not 100% precise, and some types are unknown or wrong.
- The type
Any
means it could be any we don't know and not any type is valid. - The type
int|float
means it could be a float or an int we don't know and not any number type is valid. - No types means that is not possible to guess the type.
The wrong types are likely due to the parser identifying valid keywords inside the documentation, which uses them to make a guess.
Example:
In the return value from the docs: -> switch to next view in settings Views list
, the parser will guess the type as list
since it found the word list
in the documentation and not because it knows the type.
You can also disable the guess filter by setting
StubsRuntimeSettings.guess
toFalse
.
As a workaround, there is a post-fix mechanism which allows you to "manually" point to the wrong value and substitute it with a new one. You can look at the NUKE_POST_FIXES
dictionary for more information.
In order to make the stubs as accurate as possible, feel free to open a new issue if you find any wrong values or missing information. Also, you can contribute by adding post-fixes information to the *_POST_FIXES
dictionary.
TODO: Add a section on how to contribute to the project.
Pycharm Stub generator inspired the creation of this script.
- Make pre-commit on a pull request.
- Make it available via pip.
- Find duplicates
Nuke Tools for Visual Studio Code will include the stubs files by default.