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.
2014-05-01 14:57:09 +02:00

17 lines
362 B
Python

from scrapy import log
# from scrapy.http import Request
class NIST(Source):
website = "http://webbook.nist.gov/*"
def __init__(self):
Source.__init__(self)
def parse(self, reponse):
pass
def new_compound_request(self, compound):
# return Request(url=self.website[:-1] + compound, callback=self.parse)
pass