raw_json.py 217 B

123456789
  1. """Implementation of RawJSON
  2. """
  3. class RawJSON(object):
  4. """Wrap an encoded JSON document for direct embedding in the output
  5. """
  6. def __init__(self, encoded_json):
  7. self.encoded_json = encoded_json