Anish Chhaparwal
12/02/2020, 5:27 PMgit_clone=ShellTask(log_stderr=True)
with Flow ('QETL') as flow:
git_url = Parameter("git_url",
default="<https://github.com/ieee8023/covid-chestxray-dataset>")
git_clone(command="git clone {url} {target}".format(url=git_url)
flow.run()
Zanie
make_git_clone_command(git_url)
and pass that to ShellTask
cache_for
should work for any subclass of Task