コード例 #1
0
ファイル: GrabzItClient.py プロジェクト: slimtim/grabzit
    def URLToTable(self, url, options=None):
        if (options == None):
            options = GrabzItTableOptions.GrabzItTableOptions()

        self.request = Request.Request(
            self.protocol + self.WebServicesBaseURLGet + self.TakeTable, False,
            options, url)
コード例 #2
0
ファイル: grabzItClient.py プロジェクト: Caick1000/urlBot
    def HTMLToTable(self, html, options=None):
        if (options == None):
            options = GrabzItTableOptions.GrabzItTableOptions()

        self.request = Request.Request(
            self.WebServicesBaseURLPost + self.TakeTable, True, options, html)