Explain To Me is a automatic text summarizer, that utilizes
TextRank,
a graph based algorithm to scans through the contents of a website to
extract a concise machine generated summary. The methodology is similar
to the way search engines return the most relevant web pages from a
users search query.
$ git clone https://github.com/jjangsangy/ExplainToMe.gitCurrently we only support Python 2 due to the a dependency on Python-Goose
$ virtualenv -p python2 venv$ source venv/bin/activate$ pip install --upgrade pip setuptools wheel
$ pip install -r requirements.txt$ python manage.py runserver
Running on http://127.0.0.1:5000/ (Press CTRL+C to quit)Now go to your browser and point it towards http://127.0.0.1:5000
Running ExplainToMe via the official Docker image is an easy way to start a server if you don't want to install python.
We assume here you have already installed Docker for your system.
If you are getting started on OS X, the Docker toolbox is the first thing to checkout.
$ docker run -it -p 8000:8000 jjangsangy/ExplainToMe:latestOnce the server is running, navigate to either localhost:3000 (on Linux) or hostname:30000 (on Mac OS X), where hostname is the IP addresses of your virtual machine, obtained using
$ docker-machine ip my-vm-nameNow access your docker machine ip at port docker-machine-ip:8000
You might also want to try Kitematic on OS X which provides a GUI for running Docker images.
Running ExplainToMe through Kitematic is easy, just search for the
jjangsangy/ExplainToMe image, start it, and you should see it running
- Summaries of documents in other languages than English!

