vincentullmann / houdini_stubs

Python Stub File Generator for Houdini

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Houdini Stub File Generator

Type annotation builder for SideFX Houdini hou-python Module

Usage:

  1. run main.py to build the stub files
    $ hou_stubs/main.py "/path/to/your/houdini/19.5.303/houdini/python3.9libs/hou.py"
    
    # eg.:
    $ hou_stubs/main.py /software/houdini/19.5/houdini/python3.9libs/hou.py --out=./hou-stubs
  2. include them in your $PYTHONPATH
    $ export PYTHONPATH="${PYTHONPATH}:/the/path/where/hou-stubs/is"

Examples:

Error Checking:

example error message

IDE Docs:

example inline help

here is an example from the generated stubs:

example stubs

Features:

Automatic splitting of Submodules:

submodules

Nodes/Todo:

  • Some C++ type are'nt 100% correct translated. In some cases I took shortcuts and and used similar behaving python types. eg.: pointers are just dropped. Different variations of Integer/Float/String types are all annoted as their basic int/float/str.

  • The imports and namespaces in the submodules is a bit messy. Maybe its best to keep everything combined as one big module.

  • process.process_parameter currently reads func.module.classes which takes a decent bit of time. Might be worth trying to optimize this. Maybe wrap the griffe-classes into our own sublclasses and make classes() a cached property

  • Only the hou.py itself is supported/test. In theory the code should work fine on other modules, but its untested as of right now.

Credits:

Large parts of the Code are inspired by mypy-boto3-builder.

About

Python Stub File Generator for Houdini

License:MIT License


Languages

Language:Python 89.7%Language:Jinja 10.3%