def identify_context(): if compas.is_grasshopper(): return 'Grasshopper' if compas.is_rhino(): return 'Rhino' if compas.is_blender(): return 'Blender' return None
compas_ghpython.artists compas_ghpython.utilities """ import io import os import urllib import zipfile import compas import compas_rhino __version__ = '1.13.3' if compas.is_rhino(): from .utilities import * # noqa: F401 F403 __all__ = [ 'get_grasshopper_managedplugin_path', 'get_grasshopper_library_path', 'get_grasshopper_userobjects_path', 'fetch_ghio_lib' ] __all_plugins__ = [ 'compas_ghpython.install', 'compas_ghpython.uninstall', 'compas_ghpython.artists', ]