Text Counter Application using Flask
This is a text counter application that uses Flask to count the number of characters, words and lines in the entered text area box.
Getting Started
- Clone the repository to your local machine.
- Create a migration using
flask db init.
- Create a migration script using
flask db migrate.
- Apply the migration using
flask db upgrade.
- Run the app using
flask run.
- Open your web browser and go to
http://localhost:8081 to access the application.
- Enter the text in the text area box and click on the “Calculate Text Count” button to see the number of characters, words, and lines in the text.