Source code for geowatchutil.client.geowatch_client_files

from geowatchutil.client.base import GeoWatchClient


[docs]class GeoWatchClientFile(GeoWatchClient): # Public path = "" def __init__(self, path=""): super(GeoWatchClientFile, self).__init__(backend="file") self.path = path