Skip to content

A simple text summarizer written in Python to learn Natural Language Processing (NLP).

License

Notifications You must be signed in to change notification settings

DahlitzFlorian/simple-text-summarizer

Repository files navigation

Simple Text Summarizer

Description

This repository contains a simple text summarizer written in Python. It's inspired by a Medium article from Jody LeCompte.

version 1.0

Third-Party Libraries

  • nltk
    Make sure to further install punkt and stopwords via the REPL:
>>> import nltk
>>> nltk.download("punkt")
>>> nltk.download("stopwords")

If you run into an SSL Error, make sure to install your certificates using the following command:

/Applications/Python 3.6/Install Certificates.command

where 3.6 has to be replaced by your used version of Python 3. Further information.