All Projects → dahlia → Wikidata

dahlia / Wikidata

Licence: gpl-3.0
Wikidata client library for Python

Programming Languages

python
139335 projects - #7 most used programming language
python3
1442 projects

Labels

Projects that are alternatives of or similar to Wikidata

Wikimama
Scripts to help matching OSM features to Wikidata items
Stars: ✭ 8 (-95.81%)
Mutual labels:  wikidata
Vglist
A video game library tracking web app built in Rails and powered by Wikidata.
Stars: ✭ 78 (-59.16%)
Mutual labels:  wikidata
Primarysources
Approve or reject statements from third-party datasets
Stars: ✭ 139 (-27.23%)
Mutual labels:  wikidata
Bbw
Semantic annotator: Matching CSV to a Wikibase instance (e.g., Wikidata) via Meta-lookup
Stars: ✭ 42 (-78.01%)
Mutual labels:  wikidata
Openrefine
OpenRefine is a free, open source power tool for working with messy data and improving it
Stars: ✭ 8,531 (+4366.49%)
Mutual labels:  wikidata
Scholia
Wikidata scholarly profiles
Stars: ✭ 115 (-39.79%)
Mutual labels:  wikidata
Nlquery
Natural Language Engine on WikiData
Stars: ✭ 413 (+116.23%)
Mutual labels:  wikidata
Citation.js
Citation.js converts formats like BibTeX, Wikidata JSON and ContentMine JSON to CSL-JSON to convert to other formats like APA, Vancouver and back to BibTeX.
Stars: ✭ 171 (-10.47%)
Mutual labels:  wikidata
Soweego
Link Wikidata items to large catalogs
Stars: ✭ 74 (-61.26%)
Mutual labels:  wikidata
Wikidata Graph Builder
Visualize Wikidata items using d3.js
Stars: ✭ 137 (-28.27%)
Mutual labels:  wikidata
Word2vec
訓練中文詞向量 Word2vec, Word2vec was created by a team of researchers led by Tomas Mikolov at Google.
Stars: ✭ 48 (-74.87%)
Mutual labels:  wikidata
Mundaneum
A clojure wrapper around WikiData
Stars: ✭ 54 (-71.73%)
Mutual labels:  wikidata
Hyte
EMNLP 2018: HyTE: Hyperplane-based Temporally aware Knowledge Graph Embedding
Stars: ✭ 130 (-31.94%)
Mutual labels:  wikidata
Entities Search Engine
Scripts and microservice to feed an ElasticSearch with Wikidata and Inventaire entities, and keep those up-to-date
Stars: ✭ 39 (-79.58%)
Mutual labels:  wikidata
Benmaps.fr
Web maps that don't track you.
Stars: ✭ 147 (-23.04%)
Mutual labels:  wikidata
Knowledge
combining wikidata and clojure core.logic
Stars: ✭ 16 (-91.62%)
Mutual labels:  wikidata
Wikipedia Tools For Google Spreadsheets
Wikipedia Tools for Google Spreadsheets — Install:
Stars: ✭ 96 (-49.74%)
Mutual labels:  wikidata
Cnn Re Tf
Convolutional Neural Network for Multi-label Multi-instance Relation Extraction in Tensorflow
Stars: ✭ 190 (-0.52%)
Mutual labels:  wikidata
Wikibase Cli
read and edit a Wikibase instance from the command line
Stars: ✭ 148 (-22.51%)
Mutual labels:  wikidata
Opentapioca
Entity linking system for Wikidata updated by your edits in real time
Stars: ✭ 136 (-28.8%)
Mutual labels:  wikidata

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/

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].