Metadata-Version: 2.1
Name: Wikidata
Version: 0.7.0
Summary: Wikidata client library
Home-page: https://github.com/dahlia/wikidata
Author: Hong Minhee
Author-email: hong.minhee@gmail.com
License: GPLv3 or later
Project-URL: Docs, https://wikidata.readthedocs.io/
Keywords: wikidata ontology
Platform: any
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Information Technology
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Database
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.4.0
Description-Content-Type: text/x-rst; charset=UTF-8
Requires-Dist: typing ; python_version < "3.5"
Provides-Extra: mypy
Requires-Dist: mypy (>=0.782) ; extra == 'mypy'
Provides-Extra: tests
Requires-Dist: flake8 (>=3.8.3) ; extra == 'tests'
Requires-Dist: flake8-import-order-spoqa ; extra == 'tests'
Requires-Dist: pytest (~=4.6.11) ; extra == 'tests'
Requires-Dist: pytest-flake8 (~=1.0.6) ; extra == 'tests'

Wikidata_ client library for Python
===================================

.. image:: https://badge.fury.io/py/Wikidata.svg
   :target: https://pypi.org/project/Wikidata/
   :alt: Latest PyPI version

.. image:: https://readthedocs.org/projects/wikidata/badge/?version=latest
   :target: https://wikidata.readthedocs.io/
   :alt: Documentation Status

.. image:: https://travis-ci.org/dahlia/wikidata.svg
   :alt: Build Status
   :target: https://travis-ci.org/dahlia/wikidata

This package provides easy APIs to use Wikidata_ for Python.

>>> from wikidata.client import Client
>>> client = Client()  # doctest: +SKIP
>>> entity = client.get('Q20145', load=True)
>>> entity
<wikidata.entity.Entity Q20145 'IU'>
>>> entity.description
m'South Korean singer and actress'
>>> image_prop = client.get('P18')
>>> image = entity[image_prop]
>>> image
<wikidata.commonsmedia.File 'File:KBS "The Producers" press conference, 11 May 2015 10.jpg'>
>>> image.image_resolution
(820, 1122)
>>> image.image_url
'https://upload.wikimedia.org/wikipedia/commons/6/60/KBS_%22The_Producers%22_press_conference%2C_11_May_2015_10.jpg'

.. _Wikidata: https://www.wikidata.org/


