How can i return multiple output files?
I'm taking an input file from the user through the UI and processing each URL, writing the results into a dataset. However, some URLs might fail during processing, and I want to provide a list of those failed URLs. How can I achieve this in an Apify actor using Python?
3 Replies
View post on community site
This post has been pushed to the community knowledgebase. Any replies in this thread will be synced to the community site.
Apify Community
You can use logging or output to KV store. Dataset however is single per run, so technically you can create named dataset but it will be confusing for users
national-goldOP•9mo ago
Ohh okay.
So i need to return KV store instead of dataset.