Skip to main content

The all-in-one Python package for seamless newspaper article indexing, scraping, and processing – supports public and premium content!

Project description

Newspaper-Scraper

The all-in-one Python package for seamless newspaper article indexing, scraping, and processing – supports public and premium content!

Intro

While tools like newspaper3k and goose3 can be used for extracting articles from news websites, they need a dedicated article url for older articles and do not support paywall content. This package aims to solve these issues by providing a unified interface for indexing, extracting and processing articles from newspapers.

  1. Indexing: Index articles from a newspaper website using the beautifulsoup package for public articles and selenium for paywall content.
  2. Extraction: Extract article content using the goose3 package.
  3. Processing: Process articles for nlp features using the spaCy package.

The indexing functionality is based on a dedicated file for each newspaper. A few newspapers are already supported, but it is easy to add new ones.

Supported Newspapers

Logo Newspaper Country Time span Number of articles
Der Spiegel Germany Since 2000 tbd
Die Welt Germany Since 2000 tbd
Bild Germany Since 2006 tbd
Die Zeit Germany Since 1946 tbd
Handelsblatt Germany Since 2003 tbd
Der Tagesspiegel Germany Since 2000 tbd
Süddeutsche Zeitung Germany Since 2001 tbd

Setup

It is recommended to install the package in an dedicated Python environment.
To install the package via pip, run the following command:

pip install newspaper-scraper

To also include the nlp extraction functionality (via spaCy), run the following command:

pip install newspaper-scraper[nlp]

Usage

To index, extract and process all public and premium articles from Der Spiegel, published in August 2021, run the following code:

import newspaper_scraper as nps  
from credentials import username, password  
  
with nps.Spiegel(db_file='articles.db') as news:
    news.index_articles_by_date_range('2021-08-01', '2021-08-31')  
    news.scrape_public_articles()
    news.scrape_premium_articles(username=username, password=password)  
    news.nlp()

This will create a sqlite database file called articles.db in the current working directory. The database contains the following tables:

  • tblArticlesIndexed: Contains all indexed articles with their scraping/ processing status and whether they are public or premium content.
  • tblArticlesScraped: Contains metadata for all parsed articles, provided by goose3.
  • tblArticlesProcessed: Contains nlp features of the cleaned article text, provided by spaCy.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

newspaper_scraper-0.2.1.tar.gz (21.7 kB view details)

Uploaded Source

Built Distribution

newspaper_scraper-0.2.1-py3-none-any.whl (31.5 kB view details)

Uploaded Python 3

File details

Details for the file newspaper_scraper-0.2.1.tar.gz.

File metadata

  • Download URL: newspaper_scraper-0.2.1.tar.gz
  • Upload date:
  • Size: 21.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.2

File hashes

Hashes for newspaper_scraper-0.2.1.tar.gz
Algorithm Hash digest
SHA256 4fd8ada2a5e714b2b09b5872f92032b6136a0c918d33d3e5f5e6e54c306392f4
MD5 75ebfbff77ee307a6b0bcf0818c23795
BLAKE2b-256 e12d592a27f65aba43a1efd4e2861e1418f112aac5ad7241dd0d6b82ceaa0627

See more details on using hashes here.

File details

Details for the file newspaper_scraper-0.2.1-py3-none-any.whl.

File metadata

File hashes

Hashes for newspaper_scraper-0.2.1-py3-none-any.whl
Algorithm Hash digest
SHA256 a2d956af0272b67ee0bab7f3630d97767a04d9d4c8f2cf5fb0be31f163bffc39
MD5 0e3ceaee99e8ad910cd83e236bb214b0
BLAKE2b-256 186ffa7e82dbee757fd9322e4e09fbb1d99b968ea8c9f5786067253e4d7d9c67

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page