Skip to content

🤖 Wikibase queries and edits made easy

License

Unknown and 2 other licenses found

Licenses found

Unknown
LICENSE
Apache-2.0
LICENSE-APACHE-2.0
GPL-3.0
LICENSE-GPL-3.0
Notifications You must be signed in to change notification settings

pierredittgen/python-wikibase

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

69 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

python-wikibase

python-wikibase provides an object-oriented abstraction of the Wikibase API.

The library simplifies the authentication process and can be used to query and edit information on Wikidata or any other Wikibase instance.

Installation

pip install python-wikibase

Usage

Simple example for adding a coordinate location claim to an existing Wikibase item:

from python_wikibase import PyWikibase

# Authenticate with Wikibase
py_wb = PyWikibase(config_path="config.json")

# Fetch item and "coordinate location" property
item = py_wb.Item().get(entity_id="item label")
prop = py_wb.Property().get(entity_id="coordinate location")

# Create new GeoLocation value
value = py_wb.GeoLocation().create(1.23, 4.56)

# Create GeoLocation claim
claim = item.claims.add(prop, value)

See the documentation for descriptions and examples of all commands.

Authentication

The PyWikibase class takes the same authentication and configuration parameters as the WikibaseApi class from the wikibase-api library (which is used internally). See its documentation for a guide on how to authenticate with Wikibase.

Development

Setup

See this guide on how to set up a development environment for this package.

If you'd like to test this package with a local instance of Wikibase, see this guide on how to set up a development instance with wikibase-docker.

TODO

  • Implement Sitelink class
  • Implement missing data types (see data_type.py)

Contributing

Suggestions and contributions are always welcome! Please first discuss changes via issue before submitting a pull request.

About

🤖 Wikibase queries and edits made easy

Resources

License

Unknown and 2 other licenses found

Licenses found

Unknown
LICENSE
Apache-2.0
LICENSE-APACHE-2.0
GPL-3.0
LICENSE-GPL-3.0

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 98.7%
  • Other 1.3%