.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

Popular posts from this blog

python - Overriding the save method in Django ModelForm -

html - CSS autoheight, but fit content to height of div -

qt - How to prevent QAudioInput from automatically boosting the master volume to 100%? -