New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

paralleldots-client

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

paralleldots-client

A front-end js wrapper for the ParallelDots' API

latest
npmnpm
Version
1.0.1
Version published
Weekly downloads
2
Maintainers
1
Weekly downloads
 
Created
Source

ParallelDots-JS-client-API

A js client wrapper for ParallelDots' APIs.

Installation

Install with npm

npm install paralleldots-client

API Keys

Sign up to create your free account from ParallelDots. Log in to your account to get your API key.

Supported APIs:

Examples - Full Documentation

const pd = require('paralleldots-client');

// Be sure to set your API key
pd.apiKey = "YOUR_API_KEY";

// Calls to the API return promises

pd.usage()
	.then((response) => {
		console.log(response);
	})
	.catch((error) => {
		console.log(error);
	})

pd.sentiment('Team performed well overall.')
	.then((response) => {
		console.log(response);
	}).catch((error) =>{
		console.log(error);
	})

pd.abuse("I was not very impressed with the band's performance this year")
	.then((response) => {
		console.log(response);
	})
	.catch((error) => {
		console.log(error);
	})

pd.semantic('Global warming set to exceed Paris agreement’s 1.5C limit by 2040s, according to draft UN report','There is a tipping point’: UN warns climate change goals laid out in Paris accord are almost out of reach')
	.then((response) => {
		console.log(response);
	})
	.catch((error) => {
		console.log(error);
	})


pd.ner('When Michael Jordan was at the peak of his powers as an NBA superstar, his Chicago Bulls teams were mowing down the competition, winning six National Basketball Association titles and setting a record for wins in a season that was broken by the Golden State Warriors two seasons ago.')
	.then((response) => {
		console.log(response);
	})
	.catch((error) => {
		console.log(error);
	})

pd.emotion('I am trying to imagine you with a personality.')
	.then((response) => {
		console.log(response);
	})
	.catch((error) => {
		console.log(error);
	})

pd.intent('How do I cancel my ticket from the app?')
	.then((response) => {
		console.log(response);
	})
	.catch((error) => {
		console.log(error);
	})

pd.keywords('For the Yankees, it took a stunning comeback after being down 2-0 to the Indians in the American League Division Series. For the Astros, it took beating Chris Sale to top the Red Sox.')
	.then((response) => {
		console.log(response);
	})
	.catch((error) => {
		console.log(error);
	})

pd.taxonomy('Deutsche Bank CEO sees far fewer than 4,000 Brexit-related moves: paper')
	.then((response) => {
		console.log(response);
	})
	.catch((error) => {
		console.log(error);
	})

pd.taxonomy('Deutsche Bank CEO sees far fewer than 4,000 Brexit-related moves: paper')
	.then((response) => {
		console.log(response);
	})
	.catch((error) => {
		console.log(error);
	})

pd.multilingualSentiment('Barcelona es una ciudad hermosa')
	.then((response) => {
		console.log(response);
	})
	.catch((err) =>{
		console.log(err);
	})

pd.sentimentSocial('I left my camera at home')
	.then((response) => {
		console.log(response);
	})
	.catch((error) => {
		console.log(error);
	})

To import and use a single module

Example

const sentiment = require('paralleldots/apis/sentiment');
sentiment('Team performed well overall.','<YOUR_API_KEY>')
	.then((response) => {
		console.log(response);
	}).catch((error) =>{
		console.log(error);
	})

Available APIs: abuse | customClassifier | emotion | intent | keywords | multilingualSentiment | ner | semantic | sentiment | taxonomy | usage

Note : You must pass your API key as the last parameter for single usage.

FAQs

Package last updated on 18 Feb 2018

Did you know?

Socket

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