Skip to content

Instantly share code, notes, and snippets.

View Theverat's full-sized avatar

Simon Wendsche Theverat

  • Germany
View GitHub Profile
@JacquesLucke
JacquesLucke / auto_load.py
Last active January 28, 2024 13:45
Utility to (un)register all classes in a Blender addon.
import os
import bpy
import sys
import typing
import inspect
import pkgutil
import importlib
from pathlib import Path
__all__ = (