Metadata-Version: 2.4
Name: text2insights
Version: 0.1.2
Summary: Extract sentiment, keywords, and entities from text.
Author: Lereko Qholosha
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Requires-Dist: textblob
Requires-Dist: spacy
Requires-Dist: scikit-learn
Requires-Dist: numpy
Dynamic: author
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# text2insights

A Python package to extract:

-  Sentiment (positive / negative / neutral)
-  Keywords (using TF-IDF)
- Named Entities (ORG, PERSON, GPE, MONEY)

##  Installation

```bash
pip install text2insights

## Usage
```from text2insights import analyze_text

text = "South African Reserve Bank raised interest rates to fight inflation."
print(analyze_text(text))
``
