Better Programming

Advice for programmers.

Follow publication

Member-only story

How to Build a Text Summarizer (TL;DR) With Simple Natural Language Processing

Assaf Elovic
Better Programming
Published in
3 min readDec 30, 2020

Wouldn’t it be great if you could automatically get a summary of any online article? Whether you’re too busy or have too many articles on your reading list, sometimes all you really want is a short article summary.

That’s why TL;DR is so commonly used these days. While this internet acronym can criticize a piece of writing as overly long, it is often used to give a helpful summary of a much longer story or complicated phenomenon. Today, we will build a TL;DR for any given article.

Getting Started

For this tutorial, we’ll be using two Python libraries:

  1. Beautiful Soup for web crawling.

“Beautiful Soup is a Python library for pulling data out of HTML and XML files. It works with your favorite parser to provide idiomatic ways of navigating, searching, and modifying the parse tree. It commonly saves programmers hours or days of work.” — Beautiful Soup’s documentation

  1. NLTK (Natural Language Toolkit) for text summarization.

“NLTK is a leading platform for building Python programs to work with human language data. It provides easy-to-use interfaces to over 50 corpora and lexical resources such as WordNet, along with a suite of text processing libraries for classification, tokenization, stemming, tagging, parsing, and semantic reasoning, wrappers for industrial-strength NLP libraries.” — NLTK’s documentation

Go ahead and get familiar with the libraries before continuing. Also, make sure to install them locally. Alternatively, run this command within the project repo directory:

pip install -r requirements.txt

Next, we will download the stopwords corpus from the NLTK library individually. Open Python’s command line and enter:

import nltk
nltk.download("stopwords")

Text Summarization Using NLP

Let’s describe the algorithm:

  1. Get URL from user input.

Create an account to read the full story.

The author made this story available to Medium members only.
If you’re new to Medium, create a new account to read this story on us.

Or, continue in mobile web

Already have an account? Sign in

Responses (4)

Write a response