|
|
|
|
|
""" |
|
|
Script to generate .pyi stub files for the synchronous API wrappers. |
|
|
This allows generating stubs without running the full ComfyUI application. |
|
|
""" |
|
|
|
|
|
import os |
|
|
import sys |
|
|
import logging |
|
|
import importlib |
|
|
|
|
|
|
|
|
sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) |
|
|
|
|
|
from comfy_api.internal.async_to_sync import AsyncToSyncConverter |
|
|
from comfy_api.version_list import supported_versions |
|
|
|
|
|
|
|
|
def generate_stubs_for_module(module_name: str) -> None: |
|
|
"""Generate stub files for a specific module that exports ComfyAPI and ComfyAPISync.""" |
|
|
try: |
|
|
|
|
|
module = importlib.import_module(module_name) |
|
|
|
|
|
|
|
|
if hasattr(module, "ComfyAPISync"): |
|
|
|
|
|
api_class = getattr(module, "ComfyAPI", None) |
|
|
sync_class = getattr(module, "ComfyAPISync") |
|
|
|
|
|
if api_class: |
|
|
|
|
|
AsyncToSyncConverter.generate_stub_file(api_class, sync_class) |
|
|
logging.info(f"Generated stub file for {module_name}") |
|
|
else: |
|
|
logging.warning( |
|
|
f"Module {module_name} has ComfyAPISync but no ComfyAPI" |
|
|
) |
|
|
|
|
|
elif hasattr(module, "ComfyAPI"): |
|
|
|
|
|
from comfy_api.internal.async_to_sync import create_sync_class |
|
|
|
|
|
api_class = getattr(module, "ComfyAPI") |
|
|
sync_class = create_sync_class(api_class) |
|
|
|
|
|
|
|
|
AsyncToSyncConverter.generate_stub_file(api_class, sync_class) |
|
|
logging.info(f"Generated stub file for {module_name}") |
|
|
else: |
|
|
logging.warning( |
|
|
f"Module {module_name} does not export ComfyAPI or ComfyAPISync" |
|
|
) |
|
|
|
|
|
except Exception as e: |
|
|
logging.error(f"Failed to generate stub for {module_name}: {e}") |
|
|
import traceback |
|
|
|
|
|
traceback.print_exc() |
|
|
|
|
|
|
|
|
def main(): |
|
|
"""Main function to generate all API stub files.""" |
|
|
logging.basicConfig(level=logging.INFO) |
|
|
|
|
|
logging.info("Starting stub generation...") |
|
|
|
|
|
|
|
|
api_modules = [] |
|
|
for api_class in supported_versions: |
|
|
|
|
|
module_name = api_class.__module__ |
|
|
if module_name not in api_modules: |
|
|
api_modules.append(module_name) |
|
|
|
|
|
logging.info(f"Found {len(api_modules)} API modules: {api_modules}") |
|
|
|
|
|
|
|
|
for module_name in api_modules: |
|
|
generate_stubs_for_module(module_name) |
|
|
|
|
|
logging.info("Stub generation complete!") |
|
|
|
|
|
|
|
|
if __name__ == "__main__": |
|
|
main() |
|
|
|