The "Simple Sentiment Text Analysis" project is a Python script that leverages Natural Language Processing (NLP) to analyze text sentiment. It features a user-friendly graphical user interface (GUI) created with customtkinter, enabling easy sentiment analysis for various text inputs.
Before using the script, ensure you have the following prerequisites installed:
- Python 3.x
- TextBlob library (install via
pip install textblob
) - customtkinter library (install via
pip install customtkinter
)
-
Clone or download this repository.
-
Open your terminal or command prompt and navigate to the script directory.
-
Run the script using the following command:
python main.py
-
Launch the script as described above.
-
Use the GUI to input text you want to analyze.
-
Click the "Analyse" button to instantly obtain sentiment analysis results: • "Positive" for positive sentiment. • "Negative" for negative sentiment. • "Neutral" for neutral sentiment.
This project is open-source under the MIT License. Refer to LICENSE for details.
TextBlob: The TextBlob library for sentiment analysis.
customtkinter: The custom GUI library used for the interface.