scrape-it

A Node.js scraper for humans.

README









scrape-it











scrape-it


[![Support me on Patreon][badge_patreon]][patreon] [![Buy me a book][badge_amazon]][amazon] [![PayPal][badge_paypal_donate]][paypal-donations] Ask me anything Travis Version Downloads Get help on Codementor

Buy Me A Coffee







A Node.js scraper for humans.







Want to save time or not using Node.js? Try our hosted API.












:cloud: Installation


  1. ```sh
  2. # Using npm
  3. npm install --save scrape-it

  4. # Using yarn
  5. yarn add scrape-it
  6. ```


:bulb: ProTip: You can install the cli version of this module by runningnpm install --global scrape-it-cli (or yarn global add scrape-it-cli).







FAQ



Here are some frequent questions and their answers.

1. How to parse scrape pages?



scrape-it has only a simple request module for making requests. That means you cannot directly parse ajax pages with it, but in general you will have those scenarios:


1. The ajax response is in JSON format. In this case, you can make the request directly, without needing a scraping library.
2. The ajax response gives you HTML back. Instead of calling the main website (e.g. example.com), pass to scrape-it the ajax url (e.g. example.com/api/that-endpoint) and you will you will be able to parse the response
3. The ajax request is so complicated that you don't want to reverse-engineer it. In this case, use a headless browser (e.g. Google Chrome, Electron, PhantomJS) to load the content and then use the .scrapeHTML method from scrape it once you get the HTML loaded on the page.

2. Crawling



There is no fancy way to crawl pages with scrape-it. For simple scenarios, you can parse the list of urls from the initial page and then, using Promises, parse each page. Also, you can use a different crawler to download the website and then use the .scrapeHTML method to scrape the local files.

3. Local files



Use the .scrapeHTML to parse the HTML read from the local files using fs.readFile.








:clipboard: Example




  1. ``` js
  2. const scrapeIt = require("scrape-it")

  3. // Promise interface
  4. scrapeIt("https://ionicabizau.net", {
  5.     title: ".header h1"
  6.   , desc: ".header h2"
  7.   , avatar: {
  8.         selector: ".header img"
  9.       , attr: "src"
  10.     }
  11. }).then(({ data, response }) => {
  12.     console.log(`Status Code: ${response.statusCode}`)
  13.     console.log(data)
  14. })

  15. // Callback interface
  16. scrapeIt("https://ionicabizau.net", {
  17.     // Fetch the articles
  18.     articles: {
  19.         listItem: ".article"
  20.       , data: {

  21.             // Get the article date and convert it into a Date object
  22.             createdAt: {
  23.                 selector: ".date"
  24.               , convert: x => new Date(x)
  25.             }

  26.             // Get the title
  27.           , title: "a.article-title"

  28.             // Nested list
  29.           , tags: {
  30.                 listItem: ".tags > span"
  31.             }

  32.             // Get the content
  33.           , content: {
  34.                 selector: ".article-content"
  35.               , how: "html"
  36.             }

  37.             // Get attribute value of root listItem by omitting the selector
  38.           , classes: {
  39.                 attr: "class"
  40.             }
  41.         }
  42.     }

  43.     // Fetch the blog pages
  44.   , pages: {
  45.         listItem: "li.page"
  46.       , name: "pages"
  47.       , data: {
  48.             title: "a"
  49.           , url: {
  50.                 selector: "a"
  51.               , attr: "href"
  52.             }
  53.         }
  54.     }

  55.     // Fetch some other data from the page
  56.   , title: ".header h1"
  57.   , desc: ".header h2"
  58.   , avatar: {
  59.         selector: ".header img"
  60.       , attr: "src"
  61.     }
  62. }, (err, { data }) => {
  63.     console.log(err || data)
  64. })
  65. // { articles:
  66. //    [ { createdAt: Mon Mar 14 2016 00:00:00 GMT+0200 (EET),
  67. //        title: 'Pi Day, Raspberry Pi and Command Line',
  68. //        tags: [Object],
  69. //        content: '

    Everyone knows (or should know)...a" alt="">

    \n',
  70. //        classes: [Object] },
  71. //      { createdAt: Thu Feb 18 2016 00:00:00 GMT+0200 (EET),
  72. //        title: 'How I ported Memory Blocks to modern web',
  73. //        tags: [Object],
  74. //        content: '

    Playing computer games is a lot of fun. ...',

  75. //        classes: [Object] },
  76. //      { createdAt: Mon Nov 02 2015 00:00:00 GMT+0200 (EET),
  77. //        title: 'How to convert JSON to Markdown using json2md',
  78. //        tags: [Object],
  79. //        content: '

    I love and ...',

  80. //        classes: [Object] } ],
  81. //   pages:
  82. //    [ { title: 'Blog', url: '/' },
  83. //      { title: 'About', url: '/about' },
  84. //      { title: 'FAQ', url: '/faq' },
  85. //      { title: 'Training', url: '/training' },
  86. //      { title: 'Contact', url: '/contact' } ],
  87. //   title: 'Ionică Bizău',
  88. //   desc: 'Web Developer,  Linux geek and  Musician',
  89. //   avatar: '/images/logo.png' }
  90. ```











:question: Get Help


There are few ways to get help:



1. Please post questions on Stack Overflow. You can open issues with questions, as long you add a link to your Stack Overflow question.
2. For bug reports and feature requests, open issues. :bug:
3. For direct and quick help, you can use Codementor. :rocket:





:memo: Documentation



scrapeIt(url, opts, cb)

A scraping module for humans.

Params


- String|Object url: The page url or request options.
- Object opts: The options passed to scrapeHTML method.
- Function cb: The callback function.

Return

- Promise A promise object resolving with:
  - data (Object): The scraped data.
  - $ (Function): The Cheeerio function. This may be handy to do some other manipulation on the DOM, if needed.
  - response (Object): The response object.
  - body (String): The raw body as a string.

scrapeIt.scrapeHTML($, opts)

Scrapes the data in the provided element.

For the format of the selector, please refer to the Selectors section of the Cheerio library

Params


- Cheerio $: The input element.
- Object opts: An object containing the scraping information.
  If you want to scrape a list, you have to use the listItem selector:

   - listItem (String): The list item selector.
   - data (Object): The fields to include in the list objects:
- `` (Object|String): The selector or an object containing:
         - selector (String): The selector.
         - convert (Function): An optional function to change the value.
         - how (Function|String): A function or function name to access the
           value.
         - attr (String): If provided, the value will be taken based on
           the attribute name.
         - trim (Boolean): If false, the value will not be trimmed
           (default: true).
         - closest (String): If provided, returns the first ancestor of
           the given element.
         - eq (Number): If provided, it will select the nth element.
         - texteq (Number): If provided, it will select the nth direct text child.
           Deep text child selection is not possible yet.
           Overwrites the how key.
         - listItem (Object): An object, keeping the recursive schema of
           the listItem object. This can be used to create nested lists.

  Example:
  1. ``` js
  2.   {
  3.      articles: {
  4.          listItem: ".article"
  5.        , data: {
  6.              createdAt: {
  7.                  selector: ".date"
  8.                , convert: x => new Date(x)
  9.              }
  10.            , title: "a.article-title"
  11.            , tags: {
  12.                  listItem: ".tags > span"
  13.              }
  14.            , content: {
  15.                  selector: ".article-content"
  16.                , how: "html"
  17.              }
  18.            , traverseOtherNode: {
  19.                  selector: ".upperNode"
  20.                , closest: "div"
  21.                , convert: x => x.length
  22.              }
  23.          }
  24.      }
  25.   }
  26. ```

  If you want to collect specific data from the page, just use the same
  schema used for the data field.

  Example:
  1. ``` js
  2.   {
  3.        title: ".header h1"
  4.      , desc: ".header h2"
  5.      , avatar: {
  6.            selector: ".header img"
  7.          , attr: "src"
  8.        }
  9.   }
  10. ```

Return

- Object The scraped data.














:yum: How to contribute

Have an idea? Found a bug? See [how to contribute][contributing].


:sparkling_heart: Support my projects

I open-source almost everything I can, and I try to reply to everyone needing help using these projects. Obviously,
this takes time. You can integrate and use these projects in your applications for free! You can even change the source code and redistribute (even resell it).

However, if you get some profit from this or just want to encourage me to continue creating stuff, there are few ways you can do it:


- Starring and sharing the projects you like :rocket:
- [![Buy me a book][badge_amazon]][amazon]—I love books! I will remember you after years if you buy me one. :grin: :book:
- [![PayPal][badge_paypal]][paypal-donations]—You can make one-time donations via PayPal. I'll probably buy a coffee tea. :tea:
- [![Support me on Patreon][badge_patreon]][patreon]—Set up a recurring monthly donation and you will get interesting news about what I'm doing (things that I don't share with everyone).
- Bitcoin—You can send me bitcoins at this address (or scanning the code below): 1P9BRsmazNQcuyTxEqveUsnf5CERdq35V6

    undefined


Thanks! :heart:
















:dizzy: Where is this library used?

If you are using this library in one of your projects, add it in this list. :sparkles:

- @web-master/node-web-scraper
- proxylist
- mit-ocw-scraper
- beervana-scraper
- cnn-market
- bandcamp-scraper
- @tryghost/mg-webscraper
- blockchain-notifier
- dncli
- degusta-scrapper
- trump-cabinet-picks
- cevo-lookup
- camaleon
- scrape-vinmonopolet
- do-fn
- university-news-notifier
- selfrefactor
- parn
- picarto-lib
- mix-dl
- jishon
- sahibinden
- sahibindenServer
- sgdq-collector
- ubersetzung
- ui-studentsearch
- paklek-cli
- egg-crawler
- @thetrg/gibson
- jobs-fetcher
- fmgo-marketdata
- rayko-tools
- leximaven
- codinglove-scraper
- vandalen.rhyme.js
- uniwue-lernplaetze-scraper
- spon-market
- macoolka-net-scrape
- gatsby-source-bandcamp
- salesforcerelease-parser
- yu-ncov-scrape-dxy
- rs-api
- startpage-quick-search
- helyesiras
- covidau
- 3abn
- scrape-it-cli
- codementor
- u-pull-it-ne-parts-finder
- blankningsregistret
- scrapos-worker
- @ben-wormald/bandcamp-scraper
- bible-scraper
- flamescraper
- fa.js
- growapi
- node-red-contrib-scrape-it
- carirs
- steam-workshop-scraper
- macoolka-network
- apixpress











:scroll: License


[MIT][license] © [Ionică Bizău][website]






[license]: /LICENSE
[website]: https://ionicabizau.net
[contributing]: /CONTRIBUTING.md
[docs]: /DOCUMENTATION.md
[badge_patreon]: https://ionicabizau.github.io/badges/patreon.svg
[badge_amazon]: https://ionicabizau.github.io/badges/amazon.svg
[badge_paypal]: https://ionicabizau.github.io/badges/paypal.svg
[badge_paypal_donate]: https://ionicabizau.github.io/badges/paypal_donate.svg
[patreon]: https://www.patreon.com/ionicabizau
[amazon]: http://amzn.eu/hRo9sIZ
[paypal-donations]: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=RVXDDLKKLQRJW