This Python-based web application allows users to upload a CSV file containing text data and generates a word cloud image from the text. It utilizes the Flask web framework for the user interface and the wordcloud library for word cloud generation.
Before running the application, make sure you have the following prerequisites installed:
- Python 3.x
- Required Python libraries (install using
pip
):- pandas
- matplotlib
- wordcloud
- Flask
pip install pandas matplotlib wordcloud Flask