Commit 5c520cc8 authored by sim's avatar sim

Add ris scraper

parent c816759e
from .pubmed import PubmedScraper from .pubmed import PubmedScraper
from .ris import RISScraper
from gargantext.datasource import Scraper, RISResponse
__all__ = ['RISScraper']
class RISScraper(Scraper):
name = 'ris'
expects = RISResponse
def parse(self, response):
for entry in response.parse():
yield entry
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment