Contents tagged with IronPython
-
Method Tree Visualizer :: Fun with IronPython, Cecil and Netron Graph - Part III
As I said in the last post, the output from Microsoft GLEE looked but not ideal and as the method tree gets bigger with more relationships, the diagram gets out of control. Disappointed with that, my further search takes me to the Netron Project, which is a diagramming and graph layout toolkit for Microsoft .NET Framework.
-
Fun with IronPython and Cecil (Part II)
UPDATE: [ Part III with Netron Project ]
-
Fun with IronPython & GLEE
I started this exercise thinking about visualizing the methods tree in a diagram. There are several ways to do that. I was planning to use the GraphViz project to render a dot file showing the connections between the methods. But then I found that pydot (python library for wrapping GraphViz) is not yet supported on IronPython and QuickGraph doesn't look like it is updated for some time.
-
IronPython and Cecil
Inspired by this post by Sam Gentile, I decided to play with Cecil. And this gives me another oppurtunity to use IronPython. The end result may not be very attractive but it has the potential :).
-
Fun with IronPython and Cecil
Don't miss Part II of this tutorial
What is Cecil: -
Using MSMQ from IronPython
Trying out MSMQ from Python is a pain as it is from unmanaged code. But, by using python you get the benefits of using the System.Messaging namespace with the flexibility of dynamic code. Here is how you can do this.