/Spelling-and-Grammar-checker

A webapp for Spelling and Grammar checker using Python

Primary LanguagePython

Spelling and Grammar checker Project Status: Active

A simple UI based spelling and grammar checker built with ❤️ powered by gingerit which is a wrapper around the gingersoftware.com API.

Installation:

pip install -r requirements.txt does the needful as usual 😉

Usage:

  • Open the terminal in the same directory as this cloned repo and run the command streamlit run main.py
  • The default browser will pop up and load the UI in front of you on http://localhost:8501.

 

Running the Dockerized App

  1. Ensure you have Docker Installed and Setup in your OS (Windows/Mac/Linux). For detailed Instructions, please refer this.
  2. Navigate to the folder where you have cloned this repository ( where the Dockerfile is present ).
  3. Build the Docker Image (don't forget the dot!! 😄 ):
docker build -f Dockerfile -t app:latest .
  1. Run the docker:
docker run -p 8501:8501 app:latest

This will launch the dockerized app. Navigate to http://localhost:8501/ in your browser to have a look at your application. You can check the status of your all available running dockers by:

docker ps