{ "info": { "author": "Martin Majlis", "author_email": "martin@majlis.cz", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Environment :: Web Environment", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", "Topic :: Communications :: Email", "Topic :: Software Development :: Libraries :: Python Modules" ], "description": "Wikipedia API\n=============\n\n``Wikipedia-API`` is easy to use Python wrapper for `Wikipedias'`_ API. It supports extracting texts, sections, links, categories, translations, etc from Wikipedia. Documentation provides code snippets for the most common use cases.\n\n.. _Wikipedias': https://www.mediawiki.org/wiki/API:Main_page\n\n|build-status| |docs| |cc-coverage| |version| |pyversions| |github-stars-flat|\n\nInstallation\n------------\n\nThis package requires at least Python 3.4 to install because it's using IntEnum.\n\n.. code-block:: python\n\n pip3 install wikipedia-api\n\n\nUsage\n-----\n\nGoal of ``Wikipedia-API`` is to provide simple and easy to use API for retrieving informations from Wikipedia. Bellow are examples of common use cases.\n\nImporting\n~~~~~~~~~\n\n.. code-block:: python\n\n\timport wikipediaapi\n\nHow To Get Single Page\n~~~~~~~~~~~~~~~~~~~~~~\n\nGetting single page is straightforward. You have to initialize ``Wikipedia`` object and ask for page by its name.\nIt's parameter language has be one of `supported languages`_.\n\n.. _supported languages: http://meta.wikimedia.org/wiki/List_of_Wikipedias\n\n\n.. code-block:: python\n\n import wikipediaapi\n\twiki_wiki = wikipediaapi.Wikipedia('en')\n\n\tpage_py = wiki_wiki.page('Python_(programming_language)')\n\n\nHow To Check If Wiki Page Exists\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nFor checking, whether page exists, you can use function ``exists``.\n\n.. code-block:: python\n\n\tpage_py = wiki_wiki.page('Python_(programming_language)')\n\tprint(\"Page - Exists: %s\" % page_py.exists())\n\t# Page - Exists: True\n\n\tpage_missing = wiki_wiki.page('NonExistingPageWithStrangeName')\n\tprint(\"Page - Exists: %s\" % \tpage_missing.exists())\n\t# Page - Exists: False\n\nHow To Get Page Summary\n~~~~~~~~~~~~~~~~~~~~~~~\n\nClass ``WikipediaPage`` has property ``summary``, which returns description of Wiki page.\n\n.. code-block:: python\n\n\n import wikipediaapi\n\twiki_wiki = wikipediaapi.Wikipedia('en')\n\n\tprint(\"Page - Title: %s\" % page_py.title)\n\t# Page - Title: Python (programming language)\n\n\tprint(\"Page - Summary: %s\" % page_py.summary[0:60])\n\t# Page - Summary: Python is a widely used high-level programming language for\n\n\nHow To Get Page URL\n~~~~~~~~~~~~~~~~~~~\n\n``WikipediaPage`` has two properties with URL of the page. It is ``fullurl`` and ``canonicalurl``.\n\n.. code-block:: python\n\n\tprint(page_py.fullurl)\n\t# https://en.wikipedia.org/wiki/Python_(programming_language)\n\n\tprint(page_py.canonicalurl)\n\t# https://en.wikipedia.org/wiki/Python_(programming_language)\n\nHow To Get Full Text\n~~~~~~~~~~~~~~~~~~~~\n\nTo get full text of Wikipedia page you should use property ``text`` which constructs text of the page\nas concatanation of summary and sections with their titles and texts.\n\n.. code-block:: python\n\n\twiki_wiki = wikipediaapi.Wikipedia(\n\t\tlanguage='en',\n\t\textract_format=wikipediaapi.ExtractFormat.WIKI\n\t)\n\n\tp_wiki = wiki_wiki.page(\"Test 1\")\n\tprint(p_wiki.text)\n\t# Summary\n\t# Section 1\n\t# Text of section 1\n\t# Section 1.1\n\t# Text of section 1.1\n\t# ...\n\n\n\twiki_html = wikipediaapi.Wikipedia(\n\t\tlanguage='en',\n\t\textract_format=wikipediaapi.ExtractFormat.HTML\n\t)\n\tp_html = wiki_html.page(\"Test 1\")\n\tprint(p_html.text)\n\t#

Summary

\n\t#

Section 1

\n\t#

Text of section 1

\n\t#

Section 1.1

\n\t#

Text of section 1.1

\n\t# ...\n\nHow To Get Page Sections\n~~~~~~~~~~~~~~~~~~~~~~~~\n\nTo get all top level sections of page, you have to use property ``sections``. It returns list of\n``WikipediaPageSection``, so you have to use recursion to get all subsections.\n\n.. code-block:: python\n\n\tdef print_sections(sections, level=0):\n\t\tfor s in sections:\n\t\t\tprint(\"%s: %s - %s\" % (\"*\" * (level + 1), s.title, s.text[0:40]))\n\t\t\tprint_sections(s.sections, level + 1)\n\n\n\tprint_sections(page_py.sections)\n\t# *: History - Python was conceived in the late 1980s, \n\t# *: Features and philosophy - Python is a multi-paradigm programming l\n\t# *: Syntax and semantics - Python is meant to be an easily readable\n\t# **: Indentation - Python uses whitespace indentation, rath\n\t# **: Statements and control flow - Python's statements include (among other\n\t# **: Expressions - Some Python expressions are similar to l\n\nHow To Get Page In Other Languages\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nIf you want to get other translations of given page, you should use property ``langlinks``. It is map,\nwhere key is language code and value is ``WikipediaPage``.\n\n.. code-block:: python\n\n\tdef print_langlinks(page):\n\t\tlanglinks = page.langlinks\n\t\tfor k in sorted(langlinks.keys()):\n\t\t v = langlinks[k]\n\t\t print(\"%s: %s - %s: %s\" % (k, v.language, v.title, v.fullurl))\n\n\tprint_langlinks(page_py)\n\t# af: af - Python (programmeertaal): https://af.wikipedia.org/wiki/Python_(programmeertaal)\n\t# als: als - Python (Programmiersprache): https://als.wikipedia.org/wiki/Python_(Programmiersprache)\n\t# an: an - Python: https://an.wikipedia.org/wiki/Python\n\t# ar: ar - \u0628\u0627\u064a\u062b\u0648\u0646: https://ar.wikipedia.org/wiki/%D8%A8%D8%A7%D9%8A%D8%AB%D9%88%D9%86\n\t# as: as - \u09aa\u09be\u0987\u09a5\u09a8: https://as.wikipedia.org/wiki/%E0%A6%AA%E0%A6%BE%E0%A6%87%E0%A6%A5%E0%A6%A8\n\n\tpage_py_cs = page_py.langlinks['cs']\n\tprint(\"Page - Summary: %s\" % page_py_cs.summary[0:60])\n\t# Page - Summary: Python (anglick\u00e1 v\u00fdslovnost [\u02c8pai\u03b8t\u0259n]) je vysoko\u00farov\u0148ov\u00fd sk\n\nHow To Get Links To Other Pages\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nIf you want to get all links to other wiki pages from given page, you need to use property ``links``.\nIt's map, where key is page title and value is ``WikipediaPage``.\n\n.. code-block:: python\n\n\tdef print_links(page):\n\t\tlinks = page.links\n\t\tfor title in sorted(links.keys()):\n\t\t print(\"%s: %s\" % (title, links[title]))\n\n\tprint_links(page_py)\n\t# 3ds Max: 3ds Max (id: ??, ns: 0)\n\t# ?:: ?: (id: ??, ns: 0)\n\t# ABC (programming language): ABC (programming language) (id: ??, ns: 0)\n\t# ALGOL 68: ALGOL 68 (id: ??, ns: 0)\n\t# Abaqus: Abaqus (id: ??, ns: 0)\n\t# ...\n\nHow To Get Page Categories\n~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nIf you want to get all categories under which page belongs, you should use property ``categories``.\nIt's map, where key is category title and value is ``WikipediaPage``.\n\n.. code-block:: python\n\n\tdef print_categories(page):\n\t\tcategories = page.categories\n\t\tfor title in sorted(categories.keys()):\n\t\t print(\"%s: %s\" % (title, categories[title]))\n\n\n\tprint(\"Categories\")\n\tprint_categories(page_py)\n\t# Category:All articles containing potentially dated statements: ...\n\t# Category:All articles with unsourced statements: ...\n\t# Category:Articles containing potentially dated statements from August 2016: ...\n\t# Category:Articles containing potentially dated statements from March 2017: ...\n\t# Category:Articles containing potentially dated statements from September 2017: ...\n\nHow To Get All Pages From Category\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nTo get all pages from given category, you should use property ``categorymembers``. It returns all members of given category.\nYou have to implement recursion and deduplication by yourself.\n\n.. code-block:: python\n\n\tdef print_categorymembers(categorymembers, level=0, max_level=1):\n\t\tfor c in categorymembers.values():\n\t\t print(\"%s: %s (ns: %d)\" % (\"*\" * (level + 1), c.title, c.ns))\n\t\t if c.ns == wikipediaapi.Namespace.CATEGORY and level < max_level:\n\t\t print_categorymembers(c.categorymembers, level=level + 1, max_level=max_level)\n\n\n\tcat = wiki_wiki.page(\"Category:Physics\")\n\tprint(\"Category members: Category:Physics\")\n\tprint_categorymembers(cat.categorymembers)\n\n\t# Category members: Category:Physics\n\t# * Statistical mechanics (ns: 0)\n\t# * Category:Physical quantities (ns: 14)\n\t# ** Refractive index (ns: 0)\n\t# ** Vapor quality (ns: 0)\n\t# ** Electric susceptibility (ns: 0)\n\t# ** Specific weight (ns: 0)\n\t# ** Category:Viscosity (ns: 14)\n\t# *** Brookfield Engineering (ns: 0)\n\nHow To See Underlying API Call\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nIf you have problems with retrieving data you can get URL of undrerlying API call.\nThis will help you determine if the problem is in the library or somewhere else.\n\n.. code-block:: python\n\n import wikipediaapi\n import sys\n wikipediaapi.log.setLevel(level=wikipediaapi.logging.DEBUG)\n\n # Set handler if you use Python in interactive mode\n out_hdlr = wikipediaapi.logging.StreamHandler(sys.stderr)\n out_hdlr.setFormatter(wikipediaapi.logging.Formatter('%(asctime)s %(message)s'))\n out_hdlr.setLevel(wikipediaapi.logging.DEBUG)\n wikipediaapi.log.addHandler(out_hdlr)\n\n wiki = wikipediaapi.Wikipedia(language='en')\n\n page_ostrava = wiki.page('Ostrava')\n print(page_ostrava.summary)\n # logger prints out: Request URL: http://en.wikipedia.org/w/api.php?action=query&prop=extracts&titles=Ostrava&explaintext=1&exsectionformat=wiki\n\nExternal Links\n--------------\n\n* `GitHub`_\n* `PyPi`_\n* `Travis`_\n* `ReadTheDocs`_\n\n.. _GitHub: https://github.com/martin-majlis/Wikipedia-API/\n.. _PyPi: https://pypi.python.org/pypi/Wikipedia-API/\n.. _Travis: https://travis-ci.org/martin-majlis/Wikipedia-API/\n.. _ReadTheDocs: http://wikipedia-api.readthedocs.io/\n\nOther Badges\n------------\n\n|cc-badge| |cc-issues| |coveralls| |version| |pyversions| |implementations|\n|github-downloads| |github-tag| |github-release|\n|github-commits-since-latest| |github-forks| |github-stars| |github-watches|\n|github-commit-activity| |github-last-commit| |github-code-size| |github-repo-size|\n|pypi-license| |pypi-wheel| |pypi-format| |pypi-pyversions| |pypi-implementations|\n|pypi-status| |pypi-downloads-dd| |pypi-downloads-dw| |pypi-downloads-dm|\n|libraries-io-sourcerank| |libraries-io-dependent-repos|\n\n\nOther Pages\n-----------\n\n\n\n\n.. |build-status| image:: https://travis-ci.org/martin-majlis/Wikipedia-API.svg?branch=master\n :alt: build status\n :target: https://travis-ci.org/martin-majlis/Wikipedia-API\n\n.. |docs| image:: https://readthedocs.org/projects/wikipedia-api/badge/?version=latest\n :target: http://wikipedia-api.readthedocs.io/en/latest/?badge=latest\n :alt: Documentation Status\n\n.. |cc-badge| image:: https://codeclimate.com/github/martin-majlis/Wikipedia-API/badges/gpa.svg\n :target: https://codeclimate.com/github/martin-majlis/Wikipedia-API\n :alt: Code Climate\n\n.. |cc-issues| image:: https://codeclimate.com/github/martin-majlis/Wikipedia-API/badges/issue_count.svg\n :target: https://codeclimate.com/github/martin-majlis/Wikipedia-API\n :alt: Issue Count\n\n.. |cc-coverage| image:: https://api.codeclimate.com/v1/badges/6e2c24d72438b39e5c26/test_coverage\n :target: https://codeclimate.com/github/martin-majlis/Wikipedia-API\n :alt: Test Coverage\n\n.. |coveralls| image:: https://coveralls.io/repos/github/martin-majlis/Wikipedia-API/badge.svg?branch=master\n\t:target: https://coveralls.io/github/martin-majlis/Wikipedia-API?branch=master\n\t:alt: Coveralls\n\n.. |version| image:: https://img.shields.io/pypi/v/wikipedia-api.svg?style=flat\n\t:target: https://pypi.python.org/pypi/Wikipedia-API\n\t:alt: Version\n\n.. |pyversions| image:: https://img.shields.io/pypi/pyversions/wikipedia-api.svg?style=flat\n\t:target: https://pypi.python.org/pypi/Wikipedia-API\n\t:alt: Py Versions\n\n.. |implementations| image:: https://img.shields.io/pypi/implementation/wikipedia-api.svg?style=flat\n :target: https://pypi.python.org/pypi/Wikipedia-API\n\t:alt: Implementations\n\n.. |github-downloads| image:: https://img.shields.io/github/downloads/martin-majlis/Wikipedia-API/total.svg\n\t:target: https://github.com/martin-majlis/Wikipedia-API/releases\n\t:alt: Downloads\n\n.. |github-tag| image:: https://img.shields.io/github/tag/martin-majlis/Wikipedia-API.svg\n\t:target: https://github.com/martin-majlis/Wikipedia-API/tags\n\t:alt: Tags\n\n.. |github-release| image:: https://img.shields.io/github/release/martin-majlis/Wikipedia-API.svg\n\t:target: https://github.com/martin-majlis/Wikipedia-API/\n\n.. |github-commits-since-latest| image:: https://img.shields.io/github/commits-since/martin-majlis/Wikipedia-API/latest.svg\n\t:target: https://github.com/martin-majlis/Wikipedia-API/\n\t:alt: Github commits (since latest release)\n\n.. |github-forks| image:: https://img.shields.io/github/forks/martin-majlis/Wikipedia-API.svg?style=social&label=Fork\n\t:target: https://github.com/martin-majlis/Wikipedia-API/\n\t:alt: GitHub forks\n\n.. |github-stars| image:: https://img.shields.io/github/stars/martin-majlis/Wikipedia-API.svg?style=social&label=Stars\n\t:target: https://github.com/martin-majlis/Wikipedia-API/\n\t:alt: GitHub stars\n\n.. |github-stars-flat| image:: https://img.shields.io/github/stars/martin-majlis/Wikipedia-API.svg?style=flat&label=Stars\n\t:target: https://github.com/martin-majlis/Wikipedia-API/\n\t:alt: GitHub stars\n\n.. |github-watches| image:: https://img.shields.io/github/watchers/martin-majlis/Wikipedia-API.svg?style=social&label=Watch\n\t:target: https://github.com/martin-majlis/Wikipedia-API/\n\t:alt: GitHub watchers\n\n.. |github-commit-activity| image:: https://img.shields.io/github/commit-activity/y/martin-majlis/Wikipedia-API.svg\n\t:target: https://github.com/martin-majlis/Wikipedia-API/commits/master\n\t:alt: GitHub commit activity the past week, 4 weeks, year\n\n.. |github-last-commit| image:: https://img.shields.io/github/commits/martin-majlis/Wikipedia-API/last.svg\n\t:target: https://github.com/martin-majlis/Wikipedia-API/\n\t:alt: Last commit\n\n.. |github-code-size| image:: https://img.shields.io/github/languages/code-size/martin-majlis/Wikipedia-API.svg\n\t:target: https://github.com/martin-majlis/Wikipedia-API/\n\t:alt: GitHub code size in bytes\n\n.. |github-repo-size| image:: https://img.shields.io/github/repo-size/martin-majlis/Wikipedia-API.svg\n\t:target: https://github.com/martin-majlis/Wikipedia-API/\n\t:alt: GitHub repo size in bytes\n\n.. |pypi-license| image:: https://img.shields.io/pypi/l/Wikipedia-API.svg\n\t:target: https://pypi.python.org/pypi/Wikipedia-API/\n\t:alt: PyPi License\n\n.. |pypi-wheel| image:: https://img.shields.io/pypi/wheel/Wikipedia-API.svg\n\t:target: https://pypi.python.org/pypi/Wikipedia-API/\n\t:alt: PyPi Wheel\n\n.. |pypi-format| image:: https://img.shields.io/pypi/format/Wikipedia-API.svg\n\t:target: https://pypi.python.org/pypi/Wikipedia-API/\n\t:alt: PyPi Format\n\n.. |pypi-pyversions| image:: https://img.shields.io/pypi/pyversions/Wikipedia-API.svg\n\t:target: https://pypi.python.org/pypi/Wikipedia-API/\n\t:alt: PyPi PyVersions\n\n.. |pypi-implementations| image:: https://img.shields.io/pypi/implementation/Wikipedia-API.svg\n\t:target: https://pypi.python.org/pypi/Wikipedia-API/\n\t:alt: PyPi Implementations\n\n.. |pypi-status| image:: https://img.shields.io/pypi/status/Wikipedia-API.svg\n\t:target: https://pypi.python.org/pypi/Wikipedia-API/\n\t:alt: PyPi Status\n\n.. |pypi-downloads-dd| image:: https://img.shields.io/pypi/dd/Wikipedia-API.svg\n\t:target: https://pypi.python.org/pypi/Wikipedia-API/\n\t:alt: PyPi Downloads - Day\n\n.. |pypi-downloads-dw| image:: https://img.shields.io/pypi/dw/Wikipedia-API.svg\n\t:target: https://pypi.python.org/pypi/Wikipedia-API/\n\t:alt: PyPi Downloads - Week\n\n.. |pypi-downloads-dm| image:: https://img.shields.io/pypi/dm/Wikipedia-API.svg\n\t:target: https://pypi.python.org/pypi/Wikipedia-API/\n\t:alt: PyPi Downloads - Month\n\n.. |libraries-io-sourcerank| image:: https://img.shields.io/librariesio/sourcerank/pypi/Wikipedia-API.svg\n\t:target: https://libraries.io/pypi/Wikipedia-API\n\t:alt: Libraries.io - SourceRank\n\n.. |libraries-io-dependent-repos| image:: https://img.shields.io/librariesio/dependent-repos/pypi/Wikipedia-API.svg\n\t:target: https://libraries.io/pypi/Wikipedia-API\n\t:alt: Libraries.io - Dependent Repos\n\n\n\n\nChangelog\n=========\n\n0.5.3\n-----\n\n* Adds persistent HTTP connection - `Issue 26`_\n * Downloading 50 pages reduced from 13s to 8s => 40% speed up\n\n.. _Issue 26: https://github.com/martin-majlis/Wikipedia-API/issues/26\n\n\n0.5.2\n-----\n\n* Adds namespaces 102 - 105 - `Issue 24`_\n\n.. _Issue 24: https://github.com/martin-majlis/Wikipedia-API/issues/24\n\n0.5.1\n-----\n\n* Adds tox for testing different Python versions\n\n0.5.0\n-----\n\n* Allows modifying API call parameters\n* Fixes `Issue 16`_ - hidden categories\n* Fixes `Issue 21`_ - summary extraction\n\n.. _Issue 16: https://github.com/martin-majlis/Wikipedia-API/issues/16\n.. _Issue 21: https://github.com/martin-majlis/Wikipedia-API/issues/21\n\n\n0.4.5\n-----\n\n* Handles missing sections correctly\n* Fixes `Issue 20`_\n\n.. _Issue 20: https://github.com/martin-majlis/Wikipedia-API/issues/20\n\n\n0.4.4\n-----\n* Uses HTTPS directly instead of HTTP to avoid redirect\n\n0.4.3\n-----\n* Correctly extracts text from pages without sections\n* Adds support for quoted page titles\n\n.. code:: python\n\n api = wikipediaapi.Wikipedia(\n language='hi',\n )\n python = api.article(\n title='%E0%A4%AA%E0%A4%BE%E0%A4%87%E0%A4%A5%E0%A4%A8',\n unquote=True,\n )\n print(python.summary)\n\n0.4.2\n-----\n* Adds support for Python 3.4 by not using f-strings\n\n0.4.1\n-----\n* Uses code style enforced by flake8\n* Increased code coverage\n\n0.4.0\n-----\n* Uses type annotations => minimal requirement is now Python 3.5\n* Adds possibility to use more parameters for `request`_. For example:\n\n.. code:: python\n\n api = wikipediaapi.Wikipedia(\n language='en',\n proxies={'http': 'http://localhost:1234'}\n )\n\n* Extends documentation\n\n.. _request: http://docs.python-requests.org/en/master/api/#requests.request\n\n0.3.4\n-----\n* Adds support for `property Categorymembers`_\n* Adds property ``text`` for retrieving complete text of the page\n\n.. _property Categorymembers: https://www.mediawiki.org/wiki/API:Categorymembers\n\n0.3.3\n-----\n* Added support for `request timeout`_\n* Add header: Accept-Encoding: gzip\n\n.. _request timeout: https://github.com/martin-majlis/Wikipedia-API/issues/1\n\n0.3.2\n-----\n* Added support for `property Categories`_\n\n.. _property Categories: https://www.mediawiki.org/wiki/API:Categories\n\n0.3.1\n-----\n* Removing ``WikipediaLangLink``\n* Page keeps track of its own language, so it's easier to jump between different translations of the same page\n\n0.3.0\n-----\n* Rename directory from ``wikipedia`` to ``wikipediaapi`` to avoid collisions\n\n0.2.4\n-----\n* Handle redirects properly\n\n0.2.3\n-----\n* Usage method ``page`` instead of ``article`` in ``Wikipedia``\n\n0.2.2\n-----\n* Added support for `property Links`_\n\n.. _property Links: https://www.mediawiki.org/wiki/API:Links\n\n0.2.1\n-----\n* Added support for `property Langlinks`_\n\n.. _property Langlinks: https://www.mediawiki.org/wiki/API:Langlinks\n\n0.2.0\n-----\n* Use properties instead of functions\n* Added support for `property Info`_\n\n.. _property Info: https://www.mediawiki.org/wiki/API:Info\n\n0.1.6\n-----\n* Support for extracting texts with HTML markdown\n* Added initial version of unit tests\n\n0.1.4\n-----\n* It's possible to extract summary and sections of the page\n* Added support for `property Extracts`_\n\n.. _property Extracts: https://www.mediawiki.org/wiki/Extension:TextExtracts#API", "description_content_type": "", "docs_url": null, "download_url": "https://github.com/martin-majlis/Wikipedia-API/archive/master.tar.gz", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/martin-majlis/Wikipedia-API", "keywords": "Wikipedia API wrapper", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "Wikipedia-API", "package_url": "https://pypi.org/project/Wikipedia-API/", "platform": "any", "project_url": "https://pypi.org/project/Wikipedia-API/", "project_urls": { "Download": "https://github.com/martin-majlis/Wikipedia-API/archive/master.tar.gz", "Homepage": "https://github.com/martin-majlis/Wikipedia-API" }, "release_url": "https://pypi.org/project/Wikipedia-API/0.5.3/", "requires_dist": null, "requires_python": "", "summary": "Python Wrapper for Wikipedia", "version": "0.5.3" }, "last_serial": 6004489, "releases": { "0.1.3": [ { "comment_text": "", "digests": { "md5": "8f0ace707efc287e0393ed32c2aa0c8a", "sha256": "1c48a01fb7df198b76303c7832d8ccf3102bac188683f0c4d6df451acbed880b" }, "downloads": -1, "filename": "Wikipedia-API-0.1.3.tar.gz", "has_sig": false, "md5_digest": "8f0ace707efc287e0393ed32c2aa0c8a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5051, "upload_time": "2017-12-11T14:41:40", "url": "https://files.pythonhosted.org/packages/3c/a7/56ae6fe14cd40d8e0e69b2bed5fee4b2c8a4d0fe1c97d7799017619a6552/Wikipedia-API-0.1.3.tar.gz" } ], "0.1.5": [ { "comment_text": "", "digests": { "md5": "627f0e07ea506dad01316d64fce8fe3c", "sha256": "c25e6f92519f49ad9be24df9cffacde60129ddc6513cd43e9e286594e69789dd" }, "downloads": -1, "filename": "Wikipedia-API-0.1.5.tar.gz", "has_sig": false, "md5_digest": "627f0e07ea506dad01316d64fce8fe3c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5022, "upload_time": "2017-12-11T21:28:47", "url": "https://files.pythonhosted.org/packages/9c/77/90b0369db0555f17508337ede733fc1840c3bec624d7ce65bb37a9b9486e/Wikipedia-API-0.1.5.tar.gz" } ], "0.1.6": [ { "comment_text": "", "digests": { "md5": "e90a8fef337119f8c01feb43a1b4cd6b", "sha256": "38863b7cda3e09eee644e67bb1191967de0f2835cbd5d3b8ea093f79f5faee52" }, "downloads": -1, "filename": "Wikipedia-API-0.1.6.tar.gz", "has_sig": false, "md5_digest": "e90a8fef337119f8c01feb43a1b4cd6b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7017, "upload_time": "2017-12-12T13:37:35", "url": "https://files.pythonhosted.org/packages/c2/fe/f6f5768de1ab353c3dda6dc853134d57f4d6c155aaec845b386146b0f533/Wikipedia-API-0.1.6.tar.gz" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "92c1172be319d9935047a19a78b527ea", "sha256": "98a7a10d9de38f19bc050440b466a17f72684bb0c60c625107c41c0dac614c85" }, "downloads": -1, "filename": "Wikipedia-API-0.2.0.tar.gz", "has_sig": false, "md5_digest": "92c1172be319d9935047a19a78b527ea", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8068, "upload_time": "2017-12-12T15:37:32", "url": "https://files.pythonhosted.org/packages/96/21/0162f032ac44c4f780b8d72fe24466b1b456596138a0aa705b520d5ceed9/Wikipedia-API-0.2.0.tar.gz" } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "a4d305154d79bff7a1273dc3a23dd05c", "sha256": "62870836477a8a1e7a768e9c5c2364480f0f46302c5b9a3d0ac3c804b13d02be" }, "downloads": -1, "filename": "Wikipedia-API-0.2.1.tar.gz", "has_sig": false, "md5_digest": "a4d305154d79bff7a1273dc3a23dd05c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10168, "upload_time": "2017-12-12T16:21:19", "url": "https://files.pythonhosted.org/packages/9d/f1/461cdebf8a997dec980941976a8e3a6b88c50c91835b47f5e7e6382db31c/Wikipedia-API-0.2.1.tar.gz" } ], "0.2.2": [ { "comment_text": "", "digests": { "md5": "caa0518f62aafac8cf60b6fa43df0871", "sha256": "28f390be5d986cee2c3bdfd8019c7d61b3790afab17ce41465dcdffa269d6ada" }, "downloads": -1, "filename": "Wikipedia-API-0.2.2.tar.gz", "has_sig": false, "md5_digest": "caa0518f62aafac8cf60b6fa43df0871", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9910, "upload_time": "2017-12-13T09:29:08", "url": "https://files.pythonhosted.org/packages/24/fb/1d7a878897cf4cc130d9ce370f8719594ec90a8e1c7153b11d6bef4f1651/Wikipedia-API-0.2.2.tar.gz" } ], "0.2.3": [ { "comment_text": "", "digests": { "md5": "3ffca58c692d2e40351c2a0e319deab6", "sha256": "5b475a68da3673f95db3733ae39d6d5fc406cc04874d6c3e53e75f9db3d0d81a" }, "downloads": -1, "filename": "Wikipedia-API-0.2.3.tar.gz", "has_sig": false, "md5_digest": "3ffca58c692d2e40351c2a0e319deab6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10020, "upload_time": "2017-12-13T10:29:55", "url": "https://files.pythonhosted.org/packages/65/61/aae49fdecb02047dc6fa3febd659a069e97caa22008a6ce5f0e8ca873867/Wikipedia-API-0.2.3.tar.gz" } ], "0.2.4": [ { "comment_text": "", "digests": { "md5": "7d7bc1e2245f69384f90011ff270be18", "sha256": "abc4c4dbe9ecc6acaf90af4e8d5fa1b557d76145d672bae8e287091e3ec9774b" }, "downloads": -1, "filename": "Wikipedia-API-0.2.4.tar.gz", "has_sig": false, "md5_digest": "7d7bc1e2245f69384f90011ff270be18", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10099, "upload_time": "2017-12-13T11:09:53", "url": "https://files.pythonhosted.org/packages/bd/b8/46ad9b4c225c17cb2030b7510bd122a1237bc94600b92e98f64b9366cb4d/Wikipedia-API-0.2.4.tar.gz" } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "278cc1b7cd7f33eb5dee17a979d3eb25", "sha256": "b02f124352d12c9279527292db1ff3936759190d52d3358d6e0e0d39bc890b6b" }, "downloads": -1, "filename": "Wikipedia-API-0.3.0.tar.gz", "has_sig": false, "md5_digest": "278cc1b7cd7f33eb5dee17a979d3eb25", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10159, "upload_time": "2017-12-13T12:23:21", "url": "https://files.pythonhosted.org/packages/46/68/5397aad45fa06b1a1550123bf802e926be878144e9cf6bad6e59d4a2e0e5/Wikipedia-API-0.3.0.tar.gz" } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "fd052fa0c053c9e1fadec2a5f70d1c13", "sha256": "703d572c319729681e92dc7862660326805c3e5e4e2ac995401c9849b8b69f22" }, "downloads": -1, "filename": "Wikipedia-API-0.3.1.tar.gz", "has_sig": false, "md5_digest": "fd052fa0c053c9e1fadec2a5f70d1c13", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10723, "upload_time": "2017-12-13T13:24:27", "url": "https://files.pythonhosted.org/packages/75/82/671cde2efddd7ca28a9c1cacff34985d39535fcb30e9d2206d251134a182/Wikipedia-API-0.3.1.tar.gz" } ], "0.3.2": [ { "comment_text": "", "digests": { "md5": "b3b2965960867b1313c33926923334c7", "sha256": "5da402364f03472d7cb31f0674a13e6d7c3561bf50136657e80f9e04d42e84b7" }, "downloads": -1, "filename": "Wikipedia-API-0.3.2.tar.gz", "has_sig": false, "md5_digest": "b3b2965960867b1313c33926923334c7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11352, "upload_time": "2017-12-13T21:50:44", "url": "https://files.pythonhosted.org/packages/61/ae/19a0920657545e2c6cd07acf26a61e95713f0ea503c0d3d993e057f5e932/Wikipedia-API-0.3.2.tar.gz" } ], "0.3.3": [ { "comment_text": "", "digests": { "md5": "71a34d88a5e6b514fbac328cec5478b9", "sha256": "216f24239e7d703403e5d82cdeb324a6e58387e63b9e36a18c6f9924c33f4d19" }, "downloads": -1, "filename": "Wikipedia-API-0.3.3.tar.gz", "has_sig": false, "md5_digest": "71a34d88a5e6b514fbac328cec5478b9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11477, "upload_time": "2017-12-16T08:50:16", "url": "https://files.pythonhosted.org/packages/9f/a0/98debe09405e33dfe10c70909d6c057c084a3184bfdb74574fd76d9184cf/Wikipedia-API-0.3.3.tar.gz" } ], "0.3.4": [ { "comment_text": "", "digests": { "md5": "8724ec8f19abf17752df96524468fd68", "sha256": "0f2ad7e660037f896a43600f46d6cdd94fb39a0ec856de31ec9806261b722761" }, "downloads": -1, "filename": "Wikipedia-API-0.3.4.tar.gz", "has_sig": false, "md5_digest": "8724ec8f19abf17752df96524468fd68", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14153, "upload_time": "2017-12-19T10:46:47", "url": "https://files.pythonhosted.org/packages/e1/fe/188932b89de074e4c518aaee91aeb06ab85be38f9e675c5ca1980dc432e8/Wikipedia-API-0.3.4.tar.gz" } ], "0.3.5": [ { "comment_text": "", "digests": { "md5": "2ac06999ceb22e9228dda70c4a659e9d", "sha256": "9144f82c7a9adbee9e643be54cdf54fb86f21032f0f2aa3bffb0dc078eccaafd" }, "downloads": -1, "filename": "Wikipedia-API-0.3.5.tar.gz", "has_sig": false, "md5_digest": "2ac06999ceb22e9228dda70c4a659e9d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16223, "upload_time": "2018-02-13T20:27:55", "url": "https://files.pythonhosted.org/packages/45/18/df7bf158e1f9325fa2ac48ef85d293afc2687c90e829581d28e38878a720/Wikipedia-API-0.3.5.tar.gz" } ], "0.3.6": [ { "comment_text": "", "digests": { "md5": "51cb98bba7941ca5f72a268dd9d8d062", "sha256": "dd27f480b7796b9601d16fad3fe5ad57c392d339828731d3e86b79b6cbc5e01b" }, "downloads": -1, "filename": "Wikipedia-API-0.3.6.tar.gz", "has_sig": false, "md5_digest": "51cb98bba7941ca5f72a268dd9d8d062", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16618, "upload_time": "2018-04-18T05:13:26", "url": "https://files.pythonhosted.org/packages/02/51/bddafbe088d51fa13661b52e7b27fc40feee88c40c71c92037ecf5c6ddcb/Wikipedia-API-0.3.6.tar.gz" } ], "0.3.7": [ { "comment_text": "", "digests": { "md5": "5c0b0ef0118c853480a29b1ad82bae63", "sha256": "59c182b72f02e33c098b1bea40d4208e4d4199ba8c39da81324d20a324c9306b" }, "downloads": -1, "filename": "Wikipedia-API-0.3.7.tar.gz", "has_sig": false, "md5_digest": "5c0b0ef0118c853480a29b1ad82bae63", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16621, "upload_time": "2018-04-18T05:25:06", "url": "https://files.pythonhosted.org/packages/60/f1/8df8ce6885d1aec74a3c6169077086cd00868d5866c5a2225644a05037bf/Wikipedia-API-0.3.7.tar.gz" } ], "0.4.1": [ { "comment_text": "", "digests": { "md5": "0fdf9bf33766982fd2146e060481d827", "sha256": "b871a6a30457f251d20afa7929bbca9ee3cdcbe40d2a7acebd5b1862564ddf99" }, "downloads": -1, "filename": "Wikipedia-API-0.4.1.tar.gz", "has_sig": false, "md5_digest": "0fdf9bf33766982fd2146e060481d827", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16266, "upload_time": "2019-01-06T11:37:02", "url": "https://files.pythonhosted.org/packages/5f/e5/b730d3cc1ed139fe14c8cd5f5cf42f78003457a1a5531954ddf443c8c494/Wikipedia-API-0.4.1.tar.gz" } ], "0.4.2": [ { "comment_text": "", "digests": { "md5": "0b63f8bd7cff33b3aeea91ecc10eeaa0", "sha256": "228ca236ba12febd07863dc0c7a85d02c911771eed6b10b13acc3897e54547d0" }, "downloads": -1, "filename": "Wikipedia-API-0.4.2.tar.gz", "has_sig": false, "md5_digest": "0b63f8bd7cff33b3aeea91ecc10eeaa0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16403, "upload_time": "2019-01-06T12:04:55", "url": "https://files.pythonhosted.org/packages/e8/cd/4564c19ed1dacaec1c4aa1bbcc20bd05d3a8eb46ae8797b72ab7938d8556/Wikipedia-API-0.4.2.tar.gz" } ], "0.4.3": [ { "comment_text": "", "digests": { "md5": "3390a523984e5f56f7984e08062fd4f5", "sha256": "6962ace6e4395e36c0daf1aeeef5a4b94d9a5fe80863029796ec6ea71b26f614" }, "downloads": -1, "filename": "Wikipedia-API-0.4.3.tar.gz", "has_sig": false, "md5_digest": "3390a523984e5f56f7984e08062fd4f5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16720, "upload_time": "2019-01-27T10:44:53", "url": "https://files.pythonhosted.org/packages/35/75/ed9d3c37aa657dde33a813a338c07d76a99e0dff43b7805dd93413c29098/Wikipedia-API-0.4.3.tar.gz" } ], "0.4.4": [ { "comment_text": "", "digests": { "md5": "bbe8d7211451df9ffb9419e3dcfe89de", "sha256": "e738c2fac2ad46acbfcfd0e23668117181ca3ec74cd3914c64a16f70778f0f1c" }, "downloads": -1, "filename": "Wikipedia-API-0.4.4.tar.gz", "has_sig": false, "md5_digest": "bbe8d7211451df9ffb9419e3dcfe89de", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17870, "upload_time": "2019-02-02T07:50:31", "url": "https://files.pythonhosted.org/packages/be/ed/5b070067dd6f2127de4f7196649dd64f71cd905a0826e4b481fe841daee6/Wikipedia-API-0.4.4.tar.gz" } ], "0.4.5": [ { "comment_text": "", "digests": { "md5": "407cb38fff0e592c3fddf138b1523988", "sha256": "1996048a89008df23b934ea35789fb57761ce99bbc648ebff1bc635a102e1c09" }, "downloads": -1, "filename": "Wikipedia-API-0.4.5.tar.gz", "has_sig": false, "md5_digest": "407cb38fff0e592c3fddf138b1523988", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17942, "upload_time": "2019-04-07T05:52:58", "url": "https://files.pythonhosted.org/packages/50/2b/0f8f4ca44aa822853e5241e88fe1edfa5ad7b5d127d8c078807f2d64316e/Wikipedia-API-0.4.5.tar.gz" } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "4b3d72097b585ac9d9e93e32a35b035d", "sha256": "1b47dbf6a5e679111bf3fbdc52bbb578f54066c1c0d4720e9790526d66c8e761" }, "downloads": -1, "filename": "Wikipedia-API-0.5.0.tar.gz", "has_sig": false, "md5_digest": "4b3d72097b585ac9d9e93e32a35b035d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18483, "upload_time": "2019-04-07T09:38:12", "url": "https://files.pythonhosted.org/packages/d7/7e/4ef48bda5b76dfef8ba70132a2aab23ef9fd8e5656d7c1fb07e2121a5b12/Wikipedia-API-0.5.0.tar.gz" } ], "0.5.1": [ { "comment_text": "", "digests": { "md5": "2fc5b23860ec0019dcf6d04c5648e6f1", "sha256": "94b957728cbb16f21e30fd3ef42214c84810349e2828f42367be61c52da4458f" }, "downloads": -1, "filename": "Wikipedia-API-0.5.1.tar.gz", "has_sig": false, "md5_digest": "2fc5b23860ec0019dcf6d04c5648e6f1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18484, "upload_time": "2019-04-07T10:12:09", "url": "https://files.pythonhosted.org/packages/3e/75/972785bf5a21b15c2f59ca46a30559c2558793cb850349dc085934860600/Wikipedia-API-0.5.1.tar.gz" } ], "0.5.2": [ { "comment_text": "", "digests": { "md5": "d8a6cee56bf52b0482a6844832e046bc", "sha256": "72b32d4f90f4f6febe204135cc46f4a0ca469d6f70e1ec926b377709b955e6c0" }, "downloads": -1, "filename": "Wikipedia-API-0.5.2.tar.gz", "has_sig": false, "md5_digest": "d8a6cee56bf52b0482a6844832e046bc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17996, "upload_time": "2019-08-18T18:01:20", "url": "https://files.pythonhosted.org/packages/60/fa/ebd20787e5b91c5754e2a5c3f3ad66f0898b92be925d30afcbe6478e4225/Wikipedia-API-0.5.2.tar.gz" } ], "0.5.3": [ { "comment_text": "", "digests": { "md5": "2ed0184b80b6c0f7e1a8988eeb4b7a0d", "sha256": "54ce800bd4878997d62225664e385edf0e40a3c7aadde9fd0215bbdb85cb6b39" }, "downloads": -1, "filename": "Wikipedia-API-0.5.3.tar.gz", "has_sig": false, "md5_digest": "2ed0184b80b6c0f7e1a8988eeb4b7a0d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18235, "upload_time": "2019-10-20T19:59:57", "url": "https://files.pythonhosted.org/packages/45/49/c24349d86d3a5e72f7587d2199c76d266d8cd2e530253ec2166bb8bea88a/Wikipedia-API-0.5.3.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "2ed0184b80b6c0f7e1a8988eeb4b7a0d", "sha256": "54ce800bd4878997d62225664e385edf0e40a3c7aadde9fd0215bbdb85cb6b39" }, "downloads": -1, "filename": "Wikipedia-API-0.5.3.tar.gz", "has_sig": false, "md5_digest": "2ed0184b80b6c0f7e1a8988eeb4b7a0d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18235, "upload_time": "2019-10-20T19:59:57", "url": "https://files.pythonhosted.org/packages/45/49/c24349d86d3a5e72f7587d2199c76d266d8cd2e530253ec2166bb8bea88a/Wikipedia-API-0.5.3.tar.gz" } ] }