Socket
Socket
Sign inDemoInstall

cloudmersive-nlp-api-client

Package Overview
Dependencies
38
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    cloudmersive-nlp-api-client

The_powerful_Natural_Language_Processing_APIs__v2_let_you_perform_part_of_speech_tagging_entity_identification_sentence_parsing_and_much_more_to_help_you_understand_the_meaning_of_unstructured_text_


Version published
Weekly downloads
33
increased by1000%
Maintainers
1
Install size
1.83 MB
Created
Weekly downloads
 

Readme

Source

cloudmersive-nlp-api-client

CloudmersiveNlpApiClient - JavaScript client for cloudmersive-nlp-api-client The powerful Natural Language Processing APIs (v2) let you perform part of speech tagging, entity identification, sentence parsing, and much more to help you understand the meaning of unstructured text. Cloudmersive NLP API provides advanced machine learning-based natural language processing to detect language, sentiment, meaning and intent of text content.

  • API version: v1
  • Package version: 2.1.1

Installation

For Node.js

npm

To publish the library as a npm, please follow the procedure in "Publishing npm packages".

Then install it via:

npm install cloudmersive-nlp-api-client --save
Local development

To use the library locally without publishing to a remote npm registry, first install the dependencies by changing into the directory containing package.json (and this README). Let's call this JAVASCRIPT_CLIENT_DIR. Then run:

npm install

Next, link it globally in npm with the following, also from JAVASCRIPT_CLIENT_DIR:

npm link

Finally, switch to the directory you want to use your cloudmersive-nlp-api-client from, and run:

npm link /path/to/<JAVASCRIPT_CLIENT_DIR>

You should now be able to require('cloudmersive-nlp-api-client') in javascript files from the directory you ran the last command above from.

git

If the library is hosted at a git repository, e.g. https://github.com/GIT_USER_ID/GIT_REPO_ID then install it via:

    npm install GIT_USER_ID/GIT_REPO_ID --save

For browser

The library also works in the browser environment via npm and browserify. After following the above steps with Node.js and installing browserify with npm install -g browserify, perform the following (assuming main.js is your entry file, that's to say your javascript file where you actually use this library):

browserify main.js > bundle.js

Then include bundle.js in the HTML pages.

Webpack Configuration

Using Webpack you may encounter the following error: "Module not found: Error: Cannot resolve module", most certainly you should disable AMD loader. Add/merge the following section to your webpack config:

module: {
  rules: [
    {
      parser: {
        amd: false
      }
    }
  ]
}

Getting Started

Please follow the installation instruction and execute the following JS code:

var CloudmersiveNlpApiClient = require('cloudmersive-nlp-api-client');

var defaultClient = CloudmersiveNlpApiClient.ApiClient.instance;

// Configure API key authorization: Apikey
var Apikey = defaultClient.authentications['Apikey'];
Apikey.apiKey = "YOUR API KEY"
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//Apikey.apiKeyPrefix['Apikey'] = "Token"

var api = new CloudmersiveNlpApiClient.AnalyticsApi()

var input = new CloudmersiveNlpApiClient.HateSpeechAnalysisRequest(); // {HateSpeechAnalysisRequest} Input hate speech analysis request


var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.analyticsHateSpeech(input, callback);

Documentation for API Endpoints

All URIs are relative to https://api.cloudmersive.com

ClassMethodHTTP requestDescription
CloudmersiveNlpApiClient.AnalyticsApianalyticsHateSpeechPOST /nlp-v2/analytics/hate-speechPerform Hate Speech Analysis and Detection on Text
CloudmersiveNlpApiClient.AnalyticsApianalyticsProfanityPOST /nlp-v2/analytics/profanityPerform Profanity and Obscene Language Analysis and Detection on Text
CloudmersiveNlpApiClient.AnalyticsApianalyticsSentimentPOST /nlp-v2/analytics/sentimentPerform Sentiment Analysis and Classification on Text
CloudmersiveNlpApiClient.AnalyticsApianalyticsSimilarityPOST /nlp-v2/analytics/similarityPerform Semantic Similarity Comparison of Two Strings
CloudmersiveNlpApiClient.AnalyticsApianalyticsSubjectivityPOST /nlp-v2/analytics/subjectivityPerform Subjectivity and Objectivity Analysis on Text
CloudmersiveNlpApiClient.ExtractEntitiesApiextractEntitiesPostPOST /nlp-v2/extract-entitiesExtract entities from string
CloudmersiveNlpApiClient.LanguageDetectionApilanguageDetectionGetLanguagePOST /nlp-v2/language/detectDetect language of text
CloudmersiveNlpApiClient.LanguageTranslationApilanguageTranslationTranslateDeuToEngPOST /nlp-v2/translate/language/deu/to/engTranslate German to English text with Deep Learning AI
CloudmersiveNlpApiClient.LanguageTranslationApilanguageTranslationTranslateEngToDeuPOST /nlp-v2/translate/language/eng/to/deuTranslate English to German text with Deep Learning AI
CloudmersiveNlpApiClient.LanguageTranslationApilanguageTranslationTranslateEngToFraPOST /nlp-v2/translate/language/eng/to/fraTranslate English to French text with Deep Learning AI
CloudmersiveNlpApiClient.LanguageTranslationApilanguageTranslationTranslateEngToRusPOST /nlp-v2/translate/language/eng/to/rusTranslate English to Russian text with Deep Learning AI
CloudmersiveNlpApiClient.LanguageTranslationApilanguageTranslationTranslateFraToEngPOST /nlp-v2/translate/language/fra/to/engTranslate French to English text with Deep Learning AI
CloudmersiveNlpApiClient.LanguageTranslationApilanguageTranslationTranslateRusToEngPOST /nlp-v2/translate/language/rus/to/engTranslate Russian to English text with Deep Learning AI
CloudmersiveNlpApiClient.ParseApiparseParseStringPOST /nlp-v2/parse/treeParse string to syntax tree
CloudmersiveNlpApiClient.PosTaggerApiposTaggerTagAdjectivesPOST /nlp-v2/pos/tag/adjectivesPart-of-speech tag a string, filter to adjectives
CloudmersiveNlpApiClient.PosTaggerApiposTaggerTagAdverbsPOST /nlp-v2/pos/tag/adverbsPart-of-speech tag a string, filter to adverbs
CloudmersiveNlpApiClient.PosTaggerApiposTaggerTagNounsPOST /nlp-v2/pos/tag/nounsPart-of-speech tag a string, filter to nouns
CloudmersiveNlpApiClient.PosTaggerApiposTaggerTagPronounsPOST /nlp-v2/pos/tag/pronounsPart-of-speech tag a string, filter to pronouns
CloudmersiveNlpApiClient.PosTaggerApiposTaggerTagSentencePOST /nlp-v2/pos/tag/sentencePart-of-speech tag a string
CloudmersiveNlpApiClient.PosTaggerApiposTaggerTagVerbsPOST /nlp-v2/pos/tag/verbsPart-of-speech tag a string, filter to verbs
CloudmersiveNlpApiClient.RephraseApirephraseEnglishRephraseSentenceBySentencePOST /nlp-v2/rephrase/rephrase/eng/by-sentenceRephrase, paraphrase English text sentence-by-sentence using Deep Learning AI
CloudmersiveNlpApiClient.SegmentationApisegmentationGetSentencesPOST /nlp-v2/segmentation/sentencesExtract sentences from string
CloudmersiveNlpApiClient.SegmentationApisegmentationGetWordsPOST /nlp-v2/segmentation/wordsGet words in input string
CloudmersiveNlpApiClient.SpellcheckApispellcheckCheckSentencePOST /nlp-v2/spellcheck/check/sentenceCheck if sentence is spelled correctly
CloudmersiveNlpApiClient.SpellcheckApispellcheckCorrectJsonPOST /nlp-v2/spellcheck/check/wordFind spelling corrections

Documentation for Models

Documentation for Authorization

Apikey

  • Type: API key
  • API key parameter name: Apikey
  • Location: HTTP header

FAQs

Last updated on 05 Sep 2020

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