Revit Python Wrapper / RPS Dynamo Python Node

Hi All,

I am looking to install Revit Python Shell but I am wondering if I do it will it cause some of my existing Dynamo scripts containing Python Nodes to stop working.

I want to know if installing the Revit Python Shell will effect the way I need to write python in the Dynamo Python Node?

Thanks, Simon

It shouldn’t affect any existing code you have in Dynamo, although the way code is written in RPW is slightly different. For example, in Dynamo:

import clr
clr.AddReference('RevitAPI')
from Autodesk.Revit import DB

And in RPW:

from rpw import DB

1 Like