What's the best method to pull data from dvc? I've...
# ask-the-community
l
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!
s
You need to download the flyte file first. Can you try
flyte_file.download()
?