I forgot about this question. My main problem was that I used a third-party cloud offering and they were the owners of the Jython installation, so I was limited to what I could change in the Jython environment. At that time, I thought I could use a JAVA library that would be available for jython to solve this problem, but it never worked.
While jython was out of my control, I controlled how I sent the data, so instead of using JSON, I sent formatted strings, and then used the python ast library that was in jython to turn these strings into python objects.
At the end, he looked something like this:
thestring = """['name', 'quest', 'favorite color']""" theobject = ast.literal_eval(thestring)
This type of logic allows my python script on my local machine mail strings in a jython web application to convert these strings to python data types and then use them. That was exactly what I wanted to do with JSON, without actually using JSON - they were python dicts, so it looked very much like JSON if you didn't pay attention to it.
Thank you all for your suggestions.
source share