How to re visit a url that is already scraped?
Hi
I'm making a simple app that gets updated information from a website.
This is inside a fastapi app and It uses
AsyncIOScheduler
to run the script every day,
The issue is since the crawl is already visited the main page, for the next call, It will not re visit the page.
I've did a lot of research but couldn't find a solution, other scrapers has someting like force= parameter to force the scrape.
How can we fource the UNPROCESSED
to the request?
Here is the code
2 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
mysterious-greenOP•8mo ago
Thanks @Tomáš Linhart
It worked.
Here is how I did it:
request = Request.from_url('https://crawlee.dev', unique_key=str(uuid4()))