Skip to content

Plugin Manager Draft

Simon edited this page Apr 15, 2021 · 14 revisions

Plugin Manager [draft]

  • Manager for external plugins (CLI and GUI) (install/remove)

  • list available external plugins with metadata (plugin summary and license/copyright, supported OS)

  • download python node to MR folder and external software or provide path to existing installation

  • New GUI menu entry "Plugins"

  • host production ready plugins in a dedicated location (github)

external plugins

Python 3 draft (or use PySide2)

import urllib.request

url = "https://raw.githubusercontent.com/natowi/meshroom_external_plugins/master/InstantMeshes.py"

print ("downloading")

filename, headers = urllib.request.urlretrieve(url, filename="lib\meshroom\nodes\aliceVision")

print ("download complete!")

Could be similar to Blender Plugin Manager:

plugins

Create external nodes Helper/Configurator

provide a GUI for creating nodes based on simple cli tools with known parameters

  • define tool path
  • define parameters and associate field types from gui
  • generate python node

Clone this wiki locally