home *** CD-ROM | disk | FTP | other *** search
/ Mac Easy 2010 May / Mac Life Ubuntu.iso / casper / filesystem.squashfs / var / lib / python-support / python2.6 / rdflib / QueryResult.pyc (.txt) < prev    next >
Encoding:
Python Compiled Bytecode  |  2009-04-20  |  969 b   |  22 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.6)
  3.  
  4.  
  5. class QueryResult(object):
  6.     '''
  7.     A common class for representing query result in a variety of formats, namely:
  8.  
  9.     xml   : as an XML string using the XML result format of the query language
  10.     python: as Python objects
  11.     json  : as JSON
  12.     '''
  13.     
  14.     def __init__(self, pythonResult):
  15.         self.rt = pythonResult
  16.  
  17.     
  18.     def serialize(self, format = 'xml'):
  19.         pass
  20.  
  21.  
  22.