Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

nltk-stopwords

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

nltk-stopwords

A node module exposing nltk stopwords corpora and provide utility functions for removing stopwords

  • 1.0.3
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
141
decreased by-20.79%
Maintainers
1
Weekly downloads
 
Created
Source

node-nltk-stopwords

A node module exposing nltk stopwords corpora and provide utility functions for removing stopwords

Homepage GitHub tag npm license

Usage

npm install --save nltk-stopwords
var stopwords = require('nltk-stopwords')

// let's load english stopwords
var english = stopwords.load('english')

// Remove stopwords from a sentence
stopwords.remove("A sentence can not be without stopwords", english)
// This should output
// 'A sentence without stopwords'

// You can also pass a string of language in the second parameter, `stopwords.remove` will handle stopword loading.
stopwords.remove("J'essaye de trouver un bon example", "french")
// This should output
// "J'essaye trouver bon example"

By default, the sentence is tokenized by whitespace. You can also pass an array of tokenized string instead.

stopwords.remove([ 'A', 'sentence', 'can', 'not', 'be', 'without', 'stopwords' ], english)
// This should output 
// [ 'A', 'sentence', 'without', 'stopwords' ]

If a string input is passed, stopwords.remove will return a string, if an array input is passed instead, the resulting return value will also be an array.

Keywords

FAQs

Package last updated on 07 Oct 2016

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

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc