I have flow that suppose to scrape data, clean and...
# prefect-community
h
I have flow that suppose to scrape data, clean and save data to CSV file via pandas
to_csv()
method. The path was created by pathlib:
file-path = Path("data/fresh-data.csv”)
file-path.parent.mkdir(parents=True,exist_ok=True)
Why can't I see fresh data, is there an extra thing am missing. Just trying stuff with prefect 2 on my local system
1
k
It is because your files are saved to temporary local file storage by default. See this issue. We are currently trying to find a better solution for this. For now, replacing your relative path with an absolute path will work
🙏 1