コード例 #1
0
ファイル: external.py プロジェクト: plomino/plomino.daviz
 def __call__(self, url, timeout=15):
     """ Get data and convert it to TSV if possible
     """
     return ExternalData.__call__(
         self,
         self._inject_querystring(url),
         timeout
     )
コード例 #2
0
ファイル: external.py プロジェクト: plomino/plomino.daviz
 def test(self, url, timeout=15):
     """ Test to see if provided URL is a valid URL
     """
     return ExternalData.test(self, self._inject_querystring(url), timeout)