Archived
1
0
This repository has been archived on 2025-03-03. You can view files and clone it, but cannot push or open issues or pull requests.

10 lines
205 B
Python

from scrapy import log
class Parser:
website = "http://localhost/*"
def parse(self, reponse):
log.msg("The parse function of the empty parser was used.", level=log.Warning)
pass