Are there any command in rhinoscriptsyntax that lets you auto import a .3dm or .obj file?
Like
import rhinoscriptsyntax as rs
rcs = rs.importModels("C:\Users\utahteapot.3dm")
# Do something with rcs for example coloring them red
for rc in rcs:
rs.ObjectColor(rc, [255, 0, 0])