A simple tool to analyze text written in python's django backend web frame work
Remove Punctuations in the text
Remove Numbers in the text
Remove New Lines in the text
Remove Extra Spaces in the text
Change text to Upper and Lower case
Count Only Characters present in the text
(Includes a contact page also to send contact messages to the database)
After you cloned this repository install the dependencies
pip3 install -r requirements.txtAfter that makemigrations and migrate
python3 manage.py makemigrationspython3 manage.py migrateCreate a superuser
python3 manage.py createsuperuserAt last
python3 manage.py runserverTo start this webapp
Enter the text to analyze in the textbox select operations and click on Analyze Button and see the output according to the operators you selected.
For example if you have entered "python" in the textbox and selected UPPER CASE operator and clicked on analyze button then it will change "python" which is in lower case to "PYTHON" which is in upper case now.
Python3
Django