Ejemplo n.º 1
0
 def __call__(self, url, timeout=15):
     """ Get data and convert it to TSV if possible
     """
     return ExternalData.__call__(
         self,
         self._inject_querystring(url),
         timeout
     )
Ejemplo n.º 2
0
 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)