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 15:30:28 +02:00

20 lines
462 B
Python

from source import Source
from scrapy import log
from scrapy.http import Request
from scrapy.selector import Selector
from FourmiCrawler.items import Result
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