Skip to content

read information of wikidata entities in a simpler way

License

Notifications You must be signed in to change notification settings

EdJoPaTo/wikidata-entity-reader

Repository files navigation

wikidata-entity-reader

NPM Version node

read information of wikidata entities in a simpler way

This library is meant to help with things like labels in a predefined language or faster access to claims

Install

npm install wikidata-entity-reader

Usage

import { WikibaseEntityReader } from 'wikidata-entity-reader';

const reader = new WikibaseEntityReader(entity, 'en');

reader.label();
//=> 'human'

reader.label('de');
//=> 'Mensch'