Socket
Socket
Sign inDemoInstall

opencalais-tagging

Package Overview
Dependencies
0
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    opencalais-tagging

Tag content using Opencalais


Version published
Weekly downloads
1
decreased by-66.67%
Maintainers
1
Install size
27.3 kB
Created
Weekly downloads
 

Readme

Source

Opencalais Tagging

GitHub stars GitHub watchers

Open Calais attaches intelligent metadata-tags to your unstructured content, enabling powerful text analytics. The Open Calais natural language processing engine automatically analyzes and tags your input files in such a way that your consuming application can both easily pinpoint relevant data, and effectively leverage the invaluable intelligence and insights contained within the text. Please refer to the complete documentation here.

Installation

$ npm install opencalais-tagging

Usage

  • Get your free opencalais key from here.

A promise is returned if a callback function is not provided.

const calais  = require('opencalais-tagging'),
      options = {
        content     : 'The content to tag',
        accessToken : 'opencalais-key'
      }
	
const response = await calais.tag(options)

console.log('Response : ', response)

An optional callbck function can also be provided.

const calais  = require('opencalais-tagging'),
      options = {
        content     : 'The content to tag',
        accessToken : 'opencalais-key'
      }
	  
calais.tag(options, (error, data) => {
  console.log('Response : ', data)
})

Options

####The following query parameters can be provided.

OptionsDescriptionValuesDefault Value
content (MANDATORY)Content to be tagged.stringnone
accessToken (MANDATORY)Obtained access tokenstringnone
Content-TypeIndicates the input mime type.text/html, text/xml, text/raw, application/pdftext/raw
omitOutputtingOriginalTextExcludes the original text from the output. Highly recommended for large input files.booleantrue
outputFormatDefines the output format.xml/rdf, application/json, text/n3application/json
x-calais-contentClassSpecifies the genre of the input document. Highly recommended for optimal extraction when input files are news stories or research reports.news, researchnone
x-calais-languageIndicates the language of the input text.English, French, Spanishnone
x-calais-selectiveTagsLets you specify a custom set of metadata tag types to be included in the output.additionalcontactdetails, company, country, deal, company, industry, person, socialtags, topicnone

License

This project is licensed under the MIT License - see the LICENSE file for details

Keywords

FAQs

Last updated on 03 Apr 2022

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