Horje
get node name dynamo revit Code Example
get node name dynamo revit
import clr
# Adding the DynamoRevitDS.dll module to work with the Dynamo API
clr.AddReference('DynamoRevitDS')
import Dynamo 

# access to the current Dynamo instance and workspace
dynamoRevit = Dynamo.Applications.DynamoRevit()
currentWorkspace = dynamoRevit.RevitDynamoModel.CurrentWorkspace

nodeNames = []

for i in currentWorkspace.Nodes:
	nodeNames.append(i.Name)

OUT = nodeNames




Python

Related
pyqt5 open tab Code Example pyqt5 open tab Code Example
remove common rows in two dataframes pandas Code Example remove common rows in two dataframes pandas Code Example
python send data to ip address Code Example python send data to ip address Code Example
from pandas to dictionary Code Example from pandas to dictionary Code Example
convert outlook email to text file python Code Example convert outlook email to text file python Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
9