Envoyer la commande dynamo civid
import System
from System import *
input = IN[0]
app = System.Runtime.InteropServices.Marshal.GetActiveObject("Autocad.Application")
adoc = app.ActiveDocument
adoc.SendCommand(input)
OUT = str(input) + " sent to command line"
Sore Stork