Dynamo to Python

Hi!
I made a lot of scripts in Dynamo and its works just fine.
But I am tierd to launch it every time and also its looks really slow.
Is there are any trkicks to make it faster?
And there another question- is it possible to convert Dynamo’s scripts in to the Phyton code?

Dynamo scripts are written mostly in python.
Tricks? Write good and fast code that suits your needs.
Try to avoid default nodes and nodes that are built from default nodes :smiley: They are ok, but not as fast as they could be (but support lacing etc).
Sometimes few lines of code can replace 20 nodes. Be carefull especially when you are working with lists. Use itertools and other fast modules and always check StackOverflow for help.

3 Likes

Thanks for advice, Tomasz :+1: