sourcescrapper-url-runner
v0.3.10
Published
Provides the UrlRunner class for scrapping.
Downloads
31
Maintainers
Readme
SourceScrapper-UrlRunner
Provides the UrlRunner class for scrapping.
This package is part of the SourceScrapper-Project.
Getting Started
Installation
$ npm i sourcescrapper-url-runner
Usage
const { UrlRunner } = require('sourcescrapper-url-runner');
(async () => {
const url = 'some url';
const data = await UrlRunner.run(url, args => {
// Extract data using args
});
// Do something with extracted data
})();