https://flyte.org logo
#ask-the-community
Title
# ask-the-community
l

Louis Jackson

07/17/2023, 9:57 AM
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

Samhita Alla

07/17/2023, 2:58 PM
You need to download the flyte file first. Can you try
flyte_file.download()
?
3 Views