Skip to main content

Download Wikipedia data dumps

Project description

Wikipedia downloader

wikipedia_downloader is a Python module that makes it easy to download Wikipedia data dumps.

Installation

To install wikipedia_downloader, simply run:

pip install wikipedia_downloader

Documentation

Functions

  • wikipedia_downloader.download_sql_dump(language, file, dump="latest", target_dir=".")

    Downloads and decompresses a Wikipedia SQL dump.

    Arguments:

    • language: Wikipedia name (language code).
    • file: File name.
    • dump: Dump version.
    • target_dir: Target directory.

    Example

    import wikipedia_downloader as wpd
    wpd.download_sql_dump("en", "pagelinks", dump="20190101", target_dir="./dumps")
    
  • wikipedia_downloader.get_dataframe(language, file, dump="latest", select=None, where=None)

    Builds a pandas.DataFrame from a Wikipedia SQL dump.

    Arguments:

    • language: Wikipedia name (language code).
    • file: File name.
    • dump: Dump version.
    • select: Columns to be kept.
    • where: Functions used to filter records.

    Returns: pandas.DataFrame

    Example

    import wikipedia_downloader as wpd
    select = ["page_id", "page_namespace", "page_title"]
    where = {"page_namespace": lambda x: x == 0 or x == 14}
    df = wpd.get_dataframe("en", "page", dump="20190101", select=select, where=where)
    

License

This project is licensed under the MIT License - see the LICENSE.md file for details.

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_downloader-0.2.tar.gz (2.9 kB view hashes)

Uploaded Source

Built Distribution

wikipedia_downloader-0.2-py3-none-any.whl (4.1 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