Skip to main content

This is a Wikipedia Tool to fetch revisions based on a period of time.

Project description

Wikipedia Periodic Revisions

Installation

This package is built on top of the Wikipedia API. This code was forked under the base subpackage. Also we fork the code from ajoer/WikiRevParser and we modify it to support from and to datetime to fetch revisions between certain periods; the modified code is wikipedia_toools.scraper.wikirevparser_with_time.py.

Installation

Install manually by cloning and then running

pip install -e wikipedia_tools

or by running

pip install git+https://github.com/DLR-SC/wikipedia-periodic-revisions.git

wikipedia_tools package

This packages is responsible for:

  • fetching the wikipages revisions based on a period of time
  • load them into parquet, and
  • provide basic analysis

It contains three main subpackages and the utils package which contains few helpers functions:

Scraper [wikipedia_tools.scraper]

This subpackage is responsible for downloading the wikipedia revisions from the web.

The code below shows how to download all the revisions of pages:

  • belonging to the Climate_change category.

  • revisions between start of 8 months ago (1.1.2022) and now (29.9.2022). The get_last_month function returns the datetime of the beginning of 8 months ago.

    from wikipedia_tools.utils import utils 
    utils.get_last_month(8)
    
  • if save_each_page= True: each page is fetched and downloaded on the spot under the folder data/periodic_wiki_batches/{categories_names}/from{month-year}_to{month-year}. Otherwise, all the page revisions are fetched first and then saved into one jsonl file.

from wikipedia_tools.scraper import downloader
from datetime import datetime

wikirevs= downloader.WikiPagesRevision( 
                                        categories = ["Climate_change"],
                                        revisions_from = utils.get_last_month(8),
                                        revisions_to=datetime.now(),
                                        save_each_page= True
                                        )

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

wikipedia_tools-2.0.0.tar.gz (25.4 kB view hashes)

Uploaded Source

Built Distribution

wikipedia_tools-2.0.0-py3-none-any.whl (30.3 kB view hashes)

Uploaded Python 3

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