Exemple #1
0
 def __iter__(self):
     """ Iterate through the content as individual JSON values.
     """
     try:
         from jsonstream import JSONStream
     except ImportError:
         from ..jsonstream import JSONStream
     return iter(JSONStream(self.chunks()))