{ "cells": [ { "cell_type": "markdown", "id": "c4b39799", "metadata": {}, "source": [ "# Wikidata\n", "\n", ">[Wikidata](https://wikidata.org/) is a free and open knowledge base that can be read and edited by both humans and machines. Wikidata is one of the world's largest open knowledge bases.\n", "\n", "First, you need to install `wikibase-rest-api-client` and `mediawikiapi` python packages." ] }, { "cell_type": "code", "execution_count": null, "id": "3d9195d4", "metadata": { "vscode": { "languageId": "shellscript" } }, "outputs": [], "source": [ "%pip install --upgrade --quiet wikibase-rest-api-client mediawikiapi" ] }, { "cell_type": "code", "execution_count": 7, "id": "955988a1-ebc2-4c9a-9298-c493fe842de1", "metadata": { "execution": { "iopub.execute_input": "2024-03-06T22:55:15.973160Z", "iopub.status.busy": "2024-03-06T22:55:15.972606Z", "iopub.status.idle": "2024-03-06T22:55:15.980336Z", "shell.execute_reply": "2024-03-06T22:55:15.979687Z", "shell.execute_reply.started": "2024-03-06T22:55:15.973114Z" } }, "outputs": [], "source": [ "from langchain_community.tools.wikidata.tool import WikidataAPIWrapper, WikidataQueryRun\n", "\n", "wikidata = WikidataQueryRun(api_wrapper=WikidataAPIWrapper())" ] }, { "cell_type": "code", "execution_count": 5, "id": "9926a8a7-3e4e-4a97-ba43-7e5a274b9561", "metadata": { "execution": { "iopub.execute_input": "2024-03-06T22:54:38.551998Z", "iopub.status.busy": "2024-03-06T22:54:38.551266Z", "iopub.status.idle": "2024-03-06T22:54:51.913177Z", "shell.execute_reply": "2024-03-06T22:54:51.911636Z", "shell.execute_reply.started": "2024-03-06T22:54:38.551955Z" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Result Q7251:\n", "Label: Alan Turing\n", "Description: English computer scientist (1912–1954)\n", "Aliases: Alan M. Turing, Alan Mathieson Turing, Turing, Alan Mathison Turing\n", "instance of: human\n", "country of citizenship: United Kingdom\n", "occupation: computer scientist, mathematician, university teacher, cryptographer, logician, statistician, marathon runner, artificial intelligence researcher\n", "sex or gender: male\n", "date of birth: 1912-06-23\n", "date of death: 1954-06-07\n", "sport: athletics\n", "place of birth: Maida Vale, Warrington Lodge\n", "educated at: King's College, Princeton University, Sherborne School, Hazlehurst Community Primary School\n", "employer: Victoria University of Manchester, Government Communications Headquarters, University of Cambridge, National Physical Laboratory\n", "place of death: Wilmslow\n", "field of work: cryptanalysis, computer science, mathematics, logic, cryptography\n", "cause of death: cyanide poisoning\n", "notable work: On Computable Numbers, with an Application to the Entscheidungsproblem, Computing Machinery and Intelligence, Intelligent Machinery, halting problem, Turing machine, Turing test, Turing completeness, Church-Turing thesis, universal Turing machine, Symmetric Turing machine, non-deterministic Turing machine, Bombe, probabilistic Turing machine, Turing degree\n", "religion or worldview: atheism\n", "mother: Ethel Sara Stoney\n", "father: Julius Mathison Turing\n", "doctoral student: Robin Gandy, Beatrice Helen Worsley\n", "student: Robin Gandy\n", "\n", "Result Q28846012:\n", "Label: Alan Turing\n", "Description: fictional analogon of Alan Turing (1912-1954)\n", "Aliases: Alan Mathison Turing\n", "instance of: fictional human\n", "sex or gender: male\n" ] } ], "source": [ "print(wikidata.run(\"Alan Turing\"))" ] }, { "cell_type": "code", "execution_count": null, "id": "2762aa55-92bd-4e50-b433-8c5c37da465f", "metadata": {}, "outputs": [], "source": [] } ], "metadata": { "kernelspec": { "display_name": "Python 3 (ipykernel)", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.10.12" } }, "nbformat": 4, "nbformat_minor": 5 }