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.

12 lines
268 B
Python

from scrapy import log
class Parser:
'''
website should be an regular expression of websites you want to parse.
'''
website = "http://localhost/*"
def parse(self, reponse):
log.msg("The parse function of the empty parser was used.", level=log.WARNING)
pass