Skip to content

Latest commit

 

History

History
26 lines (18 loc) · 732 Bytes

Readme.md

File metadata and controls

26 lines (18 loc) · 732 Bytes

Word Cloud Generator Web Application

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.

Table of Contents

Prerequisites

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