Metadata-Version: 2.4
Name: nlpbetter3
Version: 0.1.0
Author: python
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: nltk
Requires-Dist: seaborn
Requires-Dist: matplotlib
Requires-Dist: textblob
Requires-Dist: gensim
Requires-Dist: numpy
Dynamic: author
Dynamic: description
Dynamic: description-content-type
Dynamic: license-file
Dynamic: requires-dist

# NLP Package

This package contains comprehensive NLP functions including:
- Tokenization (Word, Sentence, Tweet, MWE)
- Stopword Removal with Visualization
- WordNet (Synonyms, Antonyms, Hypernyms)
- N-grams & Laplace Smoothing
- LESK Word Sense Disambiguation
- Lemmatization & Stemming
- POS Tagging & NER
- Sentiment Analysis
- Word2Vec

## Installation
```bash
pip install -e .
```

## Usage
```python
from nlpbetter import *
run_all_nlp_functions()
```
