コード例 #1
0
    def GET(self):
        '''Returns a string describing the test queries used in testing a data model'''

        # Get the input data from the HTTP header
        model = web.input().model

        # Return description
        return describeQueries(model)
コード例 #2
0
ファイル: main.py プロジェクト: luisibanez/smart_sample_apps
    def GET(self):
        '''Returns a string describing the test queries used in testing a data model'''
        
        # Get the input data from the HTTP header
        model = web.input().model

        # Return description
        return describeQueries(model)
コード例 #3
0
 def GET(self):
     '''Returns a string describing the queries used in testing a DM'''
     model = web.input().model
     return describeQueries(model)
コード例 #4
0
ファイル: main.py プロジェクト: CyberMD/smart_sample_apps
 def GET(self):
     '''Returns a string describing the queries used in testing a DM'''
     model = web.input().model
     return describeQueries(model)