Socket
Socket
Sign inDemoInstall

web-auto-extractor

Package Overview
Dependencies
98
Maintainers
1
Versions
38
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    web-auto-extractor

Automatically extracts structured information from webpages


Version published
Maintainers
1
Install size
12.4 MB
Created

Readme

Source

Web Auto Extractor

Build Status

Automatically extracts semantically structured information from any HTML webpage.

Supported formats:-

  • Formats that support Schema.org vocabularies:-
    • Microdata
    • RDFa-lite
    • JSON-LD
  • Miscellaneous meta tags

Demo it on tonicdev

var WAE = require('web-auto-extractor').default
//ES6: import WAE from 'web-auto-extractor'
var wae = WAE.parse(sampleHTML)
console.log(wae)
  /*
    OUTPUT
    ======
    {
      microdata: { data: {..}, unnormalizedData: {..} },
      rdfa: { data: {..}, unnormalizedData: {..} },
      jsonld: { data: {..}, unnormalizedData: null,
      metaTags: { data: {..}, unnormalizedData: {..} }
    }
  */

Installation

npm install web-auto-extractor

Usage

Import
> var WAE = require('web-auto-extractor').default
//ES6: import WAE from 'web-auto-extractor'

Lets use this sampleHTML for our example

<div itemscope itemtype="http://schema.org/Product">
  <span itemprop="brand">ACME</span>
  <span itemprop="name">Executive Anvil</span>
  <img itemprop="image" src="anvil_executive.jpg" alt="Executive Anvil logo" />
  <span itemprop="description">Sleeker than ACME's Classic Anvil, the
    Executive Anvil is perfect for the business traveler
    looking for something to drop from a height.
  </span>
  Product #: <span itemprop="mpn">925872</span>
  <span itemprop="aggregateRating" itemscope itemtype="http://schema.org/AggregateRating">
    <span itemprop="ratingValue">4.4</span> stars, based on <span itemprop="reviewCount">89
      </span> reviews
  </span>

  <span itemprop="offers" itemscope itemtype="http://schema.org/Offer">
    Regular price: $179.99
    <meta itemprop="priceCurrency" content="USD" />
    $<span itemprop="price">119.99</span>
    (Sale ends <time itemprop="priceValidUntil" datetime="2020-11-05">
      5 November!</time>)
    Available from: <span itemprop="seller" itemscope itemtype="http://schema.org/Organization">
                      <span itemprop="name">Executive Objects</span>
                    </span>
    Condition: <link itemprop="itemCondition" href="http://schema.org/UsedCondition"/>Previously owned,
      in excellent condition
    <link itemprop="availability" href="http://schema.org/InStock"/>In stock! Order now!</span>
  </span>
</div>
Parsing
> var wae = WAE.parse(sampleHTML)

This returns an object with the following attributes, each of which is of the type WAEParserObject.

  • microdata
  • rdfa
  • jsonld
  • metaTags
// Since our sampleHTML uses microdata
> var parsedMicrodata = wae.microdata
WAEParserObject Attributes
.data

Gets the normalized result of the parsed format.

// Let's print this out for our example
> parsedMicrodata.data

OUTPUT:

[
  {
    "@context": "http://schema.org/",
    "@type": "Product",
    "brand": "ACME",
    "name": "Executive Anvil",
    "image": "anvil_executive.jpg",
    "description": "Sleeker than ACME's Classic Anvil, the\n    Executive Anvil is perfect for the business traveler\n    looking for something to drop from a height.",
    "mpn": "925872",
    "aggregateRating": {
      "@context": "http://schema.org/",
      "@type": "AggregateRating",
      "ratingValue": "4.4",
      "reviewCount": "89"
    },
    "offers": {
      "@context": "http://schema.org/",
      "@type": "Offer",
      "priceCurrency": "USD",
      "price": "119.99",
      "priceValidUntil": "5 November!",
      "seller": {
        "@context": "http://schema.org/",
        "@type": "Organization",
        "name": "Executive Objects"
      },
      "itemCondition": "http://schema.org/UsedCondition",
      "availability": "http://schema.org/InStock"
    }
  }
]
.unnormalizedData

Gets the unnormalized flattened intermediate result of the parsed format which includes meta information relating to the parsed properties.

For more examples, See this output here which uses this HTML

Keywords

FAQs

Last updated on 18 Jul 2016

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc