This is a follow-up to this question.
I want to download PDF files daily. So far my Scrapy code already works. Now I want to find out if the PDF files have changed.
Does Scrapy have a built-in mechanism for this? I couldn't find a hint in the documentation.
If not, I would download the respective PDF file and compare it with the previous day's PDF file using this model:
Python library to detect if a file has changed between different runs?