Aestate
raw_json.py
Go to the documentation of this file.
1 """Implementation of RawJSON
2 """
3 
4 class RawJSON(object):
5  """Wrap an encoded JSON document for direct embedding in the output
6 
7  """
8  def __init__(self, encoded_json):
9  self.encoded_json = encoded_json
aestate.ajson.sim.raw_json.RawJSON.__init__
def __init__(self, encoded_json)
Definition: raw_json.py:8
aestate.ajson.sim.raw_json.RawJSON.encoded_json
encoded_json
Definition: raw_json.py:9
aestate.ajson.sim.raw_json.RawJSON
Definition: raw_json.py:4