.net - IronPython - JSON choices -
What is the best way to deal with JSON in IronPython 2.0.1. Native Python "standard library" JSON is not yet being implemented
How can I do this if I want to use the NewtonSoft Jason.net network? I can add assembly to GAC, but what are my other options?
This link provides an overview of ways to add refill to Net DLL with IronPython:
So, for example, if you want to avoid placing Jason.net Library in GAC, you can use
import clr - clr.AddReferenceToFile ("Jsonnet.dll")
or
clr.AddReferenceToFileAndPath ("C: \\ libraries \\ jsonnet.dll")
Comments
Post a Comment