node-scraper-burpple

1.2.1 • Public • Published

node-scraper-burpple

  • A scraper that extracts restaurant data from Burpple.
  • Unofficial API

Usage

Scrape a page

A page consists of 12 entries each. Use the following:

import BurppleScraper from 'node-scraper-burpple';

(async () => {

    const entries = await BurppleScraper.scrapePage({
        page: 1,
        priceMin: 0,
        priceMax: 90
    });

})();

Scrape a single entry

Information such as coordinates, addresses and opening times are found in individual listings.

Use the following:

import BurppleScraper from 'node-scraper-burpple';

(async () => {

    const entries = await BurppleScraper.scrapeEntry({
        url: 'https://www.burpple.com/the-dark-gallery-2'
    });

})();

Readme

Keywords

none

Package Sidebar

Install

npm i node-scraper-burpple

Weekly Downloads

0

Version

1.2.1

License

MIT

Unpacked Size

125 kB

Total Files

8

Last publish

Collaborators

  • jhtong