Source code for gws.ext.action.gekos.cli

from argh import arg
import gws.tools.clihelpers as clihelpers

COMMAND = 'gekos'


[docs]@arg('--project', help='project unique ID') def load(project=None): """Load the data from Gekos-Online into a postgres table""" a = clihelpers.find_action('gekos', project) if a: a.load_data()