A web scraper build to search specific information for a given compound (and its pseudonyms)
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

The script should stop sometime, added a stopping signal

+1
+1
Fourmi.py
··· 15 15 spider = FourmiSpider(compound=searchable) 16 16 settings = get_project_settings() 17 17 crawler = Crawler(settings) 18 + crawler.signals.connect(reactor.stop, signal=signals.spider_closed) 18 19 crawler.configure() 19 20 crawler.crawl(spider) 20 21 crawler.start()