What's the best method to pull data from dvc? I've...
# flyte-support
b
What's the best method to pull data from dvc? I've tried using FlyteFile/FlyteDirectory with
dvc.api.get_url(path, remote)
- but I can't actually open the flyte file and do data processing on it like
pd.read_json(flyte_file)
, thanks!
t
You need to download the flyte file first. Can you try
flyte_file.download()
?