vote up 0 vote down star

What is the best way to deal with JSON in IronPython 2.0.1. The native Python "standard library" json looks to be not implemented yet.

If I wanted to use the Newtonsoft Json.NET library how do I do this? I could add the assembly to the GAC, but what are my other choices?

flag

68% accept rate

1 Answer

vote up 1 vote down check

This link provides an overview of the ways to add refernces to .Net dlls with IronPython: Haibo Luo's weblog : IronPython: clr.AddReference

So, for example, if you'd likle to avoid placing the Json.NET library in the GAC you can use

import clr
clr.AddReferenceToFile("jsonnet.dll")

or

clr.AddReferenceToFileAndPath("C:\\libraries\\jsonnet.dll")

link|flag
+1 & answer. just what I was looking for. thanks – tyndall May 3 at 21:41

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.