olivia_finder.data_source.repository_scrapers

Module that contains the custom implementation of the Scraper class for a set of package managers

The included package managers are:

NPM

(Node Package Manager from https://www.npmjs.com/) olivia_finder.data_source.repository_scrapers.npm.NpmScraper

PyPI

(Python Package Index from https://pypi.org/) olivia_finder.data_source.repository_scrapers.pypi.PypiScraper

CRAN

(Comprehensive R Archive Network from https://cran.r-project.org/) olivia_finder.data_source.repository_scrapers.cran.CranScraper

Bioconductor

(Bioconductor from https://www.bioconductor.org/) olivia_finder.data_source.repository_scrapers.bioconductor.BioconductorScraper

 1'''
 2
 3Module that contains the custom implementation of the Scraper class for a set of package managers
 4
 5The included package managers are:
 6
 7## **NPM**
 8(Node Package Manager from https://www.npmjs.com/)
 9`olivia_finder.data_source.repository_scrapers.npm.NpmScraper`
10
11## **PyPI**
12(Python Package Index from https://pypi.org/)
13`olivia_finder.data_source.repository_scrapers.pypi.PypiScraper`
14
15## **CRAN** 
16(Comprehensive R Archive Network from https://cran.r-project.org/)
17`olivia_finder.data_source.repository_scrapers.cran.CranScraper`
18
19## **Bioconductor**
20(Bioconductor from https://www.bioconductor.org/)
21`olivia_finder.data_source.repository_scrapers.bioconductor.BioconductorScraper`
22
23'''