Find nodes and packages in use in a graph

Following this discussion on how to list packages and nodes in use in a graph, I thought it could be a good idea to share here what I have tried so far - from what was initially shared by ScubaMan - and see if any improvement could be proposed. For the moment, the graph should list the paths of custom nodes, where the names of the packages can be found, but I have still no idea how to identify which packages the Zero Touch nodes belong to. Any idea, link or contribution are welcome…


Nodes-packages-paths.dyn (29.7 KB)

9 Likes

Thanks @Yna_Db,

You have definitely improved on my original script and have shown so really cool ways to cull data. Thanks for the improvements. I imagine the people on this forum can help with the zero touch nodes.

Thanks,
Steven

1 Like

This is fantastic.

Have either of you looked into the possibility (or feasibility) of looping through the node file paths for the embedded dependent custom nodes?

1 Like

Not something I have thought about it but I am sure something could be done very similar to to what is being done above.

Just took a quick look at one of the .dyf files and they seem to use the same coding that a .dyn file uses. so you could use this scrip to give you all the nodes names used within a node itself. If you just want the nested custom nodes you would need a list of names to look for.

I think that it is very doable though and another great use for the script.

Thanks for the Idea Nick,
Steven

Awesome :slight_smile: I think this Audit DYN File node @Ewan_Opie made could be used in conjunction with this to find the zero touch nodes:

1 Like

I made a node that taps the graph’s view model and displays the unique categories (as displayed in the library window and specified in each node’s definition) of all placed nodes. It should work for zero touch nodes. Hopefully it can be of use:

My use case was targeted more towards finding all custom packages needed for the graph.

19 Likes

Well, it looks that this great node is doing exactly what we need, so simple, thanks @Dimitar_Venkov :smile:

Is there a way to run this on scripts rather than on the open script? I only ask because you would have to freeze so scripts just to analyse them and lots of open close if you want to do it for a lot of them.

Great work though. Love your package and all the help you have provided on the forum.

I did some minor testing with this. I just converted the original graph into a custom node and had it run on the consecutive filepath outputs a few times. It’s not pretty but it does work, and I’ve rarely seen nodes with more than 2 or 3 layers of dependent nodes so it would probably work for the vast majority of graphs.

1 Like

Can’t think of a way. The above node will only handle nodes placed on the active home graph.

1 Like

It seems that the Sastrugi - Audit DYN File node from @Ewan_Opie can do that easily and also reports Zero Touch nodes (but not the associated packages apparently)

1 Like

Hi All,

I started to tweak the Audit node on Friday, with the intention of also including package info for each node. I am confident I have a workflow that will allow the package for each Node to be reported.

My only concern at the moment is that for identification to be successful the audit will need to be run on the script creators PC before being included in a distribution package containing the audit CSV and the DYN. This is because any reference to node package locations for data on which node is from where, can only be done if the packages are present with my old workflow.

Because there is no up to date full catalogue of dynamo nodes online for my workflow to reference this makes the next step interesting. Please correct me if I am wrong. (dynamonodes.com is good, hence What.the.node, but I have experienced gaps in it being up to date, and reporting of nodes is wrong packages eg Core nodes being from Zebra… )

Embedding the catalogue of nodes within the script is something I am also looking at, as well as tweaking efficiency on Monday. Fingers crossed :crossed_fingers:t2:

1 Like

Hi All,

Here is my revised node (to be distributed in package in the coming weeks)
Please note that I have only had the ability to test this on my systems architecture, so let me know if you get any different results.

sas2

Node capabilities:

  • File Name
  • File Size
  • Workspace Version
  • Total Connectors
  • Unique Node Names, Types, Numbers and Packages (with versions if available)
  • Node Types and Numbers
  • Total Nodes

Options:

  • Export Report to CSV
  • Export an Audited DYN containing a code block listing Audit information.
    (Both are placed in the same folder as the original DYN)

sas3

sas4

sas5

This node will only generate package information when used on the creators PC before distribution. This is due to the need to reference script nodes to package node locations locally. (This does mean that the run time for this node can be a little long, as it explores the contents of your package folder/s each time)

So to make users aware of required packages, the Audited DYN could be sent in lieu of the original as no other changes to the script are made apart from adding a code block full of text.

Special thanks to @awilliams for some super python scripting advice!

EDIT/UPDATE: FILE REMOVED, SEE POSTING BELOW FOR UP TO DATE FILE
https://forum.dynamobim.com/t/find-nodes-and-packages-in-use-in-a-graph/16367/26

Enjoy! :wink:

10 Likes

Big ask here, hopefully not too much trouble: Is it possible to also include a list of node names for nodes which are unresolved?

What do you mean by unresolved?
If the node can’t find an appropriate package for the type it will substitute a value, this may be used as a “heads-up”

At the moment it is as below:
Custom nodes = Package Not Found
Zerotouch nodes = The node type as what has been stated in the data already

At least that’s how it was working on my end. :face_with_raised_eyebrow:

1 Like

Lookng forward to trying this tomorrow @Ewan_Opie :grin: will be very helpful when I transition the firm over to Revit 2018 and have all my Dynamo Player workflows ready to go by having all of the correct packages on the server

2 Likes

I’ll try this out on my end once I get Dynamo installed (having some difficulty with the new laptop - bear with me), but my thought was to see if t could break the unresolved nodes (not installed on the system running the analysis) out into a separate list so you knew what nodes would throw issues so as a manager/organizer/lead/power user you could search for the node names you need when a user writes a script with a custom node from a package which isn’t yet in the office’s library, so that hypothetical manager/organizer/lead/power user could make an informed decision on the need for the missing package.

@jacob.small it sounds from this statement that this node will do what you are describing to some degree :slight_smile: I suppose we’ll both find out once we have Dynamo to try it out!

1 Like

Bingo! Can’t wait to feed in an aggregated list of DYFs to see what happened…

Why do I get the feeling you’re going to make a bunch of valueless custom nodes, make a .dyn using all of them, then delete the .dyfs and then run this node on that .dyn? :rofl:

Just kidding, but I think it’d be cool to somehow integrate the What the Node capabilities within this node for unresolved nodes (and of course, replacing null outputs with something else)

2 Likes