A simple Python package to represent events from Wikipedia and Wikidata resources.
Project description
wikivents
This Python package is used to represent events based on both ontologies and semi-structured databases. Up to now, only Wikidata and Wikipedia are implemented and provide these data. The name of this package, wikivents
show this legacy.
Events
An event is an ontology entity. For Wikidata, an event is an instance of an occurrence (Q1190554) or of an event (Q1656682).
A event is defined by few characteristics:
- A type: on Wikidata, this defines the type of the event. For instance, rebellion (Q124734) on Wikidata. This information is provided by the
wd:P31
orrdf:type
, depending on the source. - Date of occurrence, converted if necessary in the Gregorian calendar.
- Location where the event happened.
- The entities related to the event. The extraction process is based on semi-strucuted databases, which are processed in search of entities (people involved, places, etc). Entities are counted. This index shows the relevance of the entity in relation to the event. We assume the entities found in multiple lead sections are important entities in the event description.
Usage
The process of gathering data from multiple APIs (ontologies and semi-structured databases) can take a long time. We implemented a cache which speeds up queries and prevents from querying twice the same data.
Up to now, the only implemented toolchain is based on Wikimedia foundation projects: Wikidata for the ontology and Wikipedia articles for semi-structured databases. Then it is possible to get the representation of an event using the WikimediaFactory
object, as in the example below:
from wikivents.factories.wikimedia import WikimediaFactory
from wikivents.models import EntityId
easter_rising_entity_id = EntityId("Q193689")
easter_rising_event = WikimediaFactory.create_event(easter_rising_entity_id)
The previous code takes the Easter Rising event entity id (Q193689
)' as input. If using another Factory
which processes other ontologies, the entry point will obviously not be the same.
From the easter_rising_event
object, it is possible to access multiple attributes:
- The event identifier, which comes from the ontology itself:
easter_rising_event.id
Out[5]: 'Q193689'
- The event label, in any possible language. If unavailable, will return an empty string.
easter_rising_event.label("fr")
Out[7]: 'Insurrection de Pâques 1916'
- The event alternative names, which means all the names that are used in a specific language to speak about the event.
easter_rising_event.names("de")
Out[8]: {'Easter Rising', 'Irischer Osteraufstand 1916', 'Osteraufstand'}
- The event description, in plain text.
easter_rising_event.description("en")
Out[9]: 'an armed insurrection in Ireland during Easter Week, 1916'
- The event boundary dates, beginning and end.
easter_rising_event.beginning, easter_rising_event.end
Out[12]: (datetime.datetime(1916, 4, 24, 0, 0, tzinfo=datetime.timezone.utc), datetime.datetime(1916, 4, 30, 0, 0, tzinfo=datetime.timezone.utc))
- The entities involved, accessible using the
gpe
property for GPE,org
property for ORG andper
property for PER entities.
easter_rising_event.gpe
Out[13]: [ParticipatingEntity(entity=<Entity(Q1761, Dublin)>, count=8),ParticipatingEntity(entity=<Entity(Q27, Ireland)>, count=5)]
Encode events in reusable formats
The wikivents
library also provides encoders which are used to transform the event object into other formats, easier to manipulate. From now on, we provide a DictEncoder
which make it easy to create a JSON file from it.
from wikivents.model_encoders import EventToDictEncoder
from wikivents.models import ISO6391LanguageCode
encoder = EventToDictEncoder(easter_rising_event, ISO6391LanguageCode("en"))
encoder.encode()
The purpose of encoders is to provide all the possible knowledge acquired about events and to show involved entities. It is also possible to add a parameter to the encode()
method, participating_entities_ratio_to_keep
to indicate which entities will be kept. It is a value comprised between 0 and 1. 1
means to keep all the participating entities, 0.5
to keep them only if they were found in at least 50% of the total number of processed semi-structured databases.
Below is an example, and the associated JSON output:
import json
with open("easter_rising_event.json", mode="w") as easter_rising_json_file:
json.dump(encoder.encode(), easter_rising_json_file)
[
{
"Q193689": {
"iso_639_1_language_code": "en",
"id": "Q193689",
"type": "EVENT",
"label": "Easter Rising",
"description": "an armed insurrection in Ireland during Easter Week, 1916",
"names": [
"1916 Rising",
"Easter Rebellion",
"Easter Rising"
],
"processed_languages": [
"de",
"it",
"es",
"fr",
"en"
],
"entities_kept_if_mentioned_in_more_at_least_X_languages": 2.5,
"start": "1916-04-24T00:00:00+00:00",
"end": "1916-04-30T00:00:00+00:00",
"entities": {
"per": [
{
"id": "Q213374",
"type": [
"PERSON"
],
"label": "James Connolly",
"description": "James Connolly",
"names": [
"James Connolly"
],
"count": 3
},
{
"id": "Q274143",
"type": [
"PERSON"
],
"label": "Patrick Pearse",
"description": "Patrick Pearse",
"names": [
"Patrick Henry Pearse",
"Patrick Pearse",
"Padraig Pearse"
],
"count": 3
}
],
"gpe": [
{
"id": "Q1761",
"type": [
"GPE"
],
"label": "Dublin",
"description": "Dublin",
"names": [
"City of Dublin",
"Baile Átha Cliath",
"Dublin",
"Dublin city"
],
"count": 8
},
{
"id": "Q27",
"type": [
"GPE",
"ORG"
],
"label": "Ireland",
"description": "Ireland",
"names": [
"🇮🇪",
"Eire",
"Éire",
"Ireland",
"ie",
"ireland",
"IRL",
"Ireland, Republic of",
"Republic of Ireland",
"Hibernia",
"IE",
"Southern Ireland"
],
"count": 5
},
{
"id": "Q145",
"type": [
"GPE",
"ORG"
],
"label": "United Kingdom",
"description": "United Kingdom",
"names": [
"G.B.",
"GBR",
"United Kingdom",
"U. K.",
"U K",
"GB",
"UK",
"United Kingdom of Great Britain and Northern Ireland",
"G B R",
"Marea Britanie",
"G. B. R.",
"G B",
"G. B.",
"G.B.R.",
"🇬🇧",
"U.K.",
"Great Britain"
],
"count": 3
}
],
"org": [
{
"id": "Q27",
"type": [
"GPE",
"ORG"
],
"label": "Ireland",
"description": "Ireland",
"names": [
"🇮🇪",
"Eire",
"Éire",
"Ireland",
"ie",
"ireland",
"IRL",
"Ireland, Republic of",
"Republic of Ireland",
"Hibernia",
"IE",
"Southern Ireland"
],
"count": 5
},
{
"id": "Q1074958",
"type": [
"ORG"
],
"label": "Irish Volunteers",
"description": "Irish Volunteers",
"names": [
"Irish Volunteers",
"Irish Volunteer Army",
"Irish Volunteer Force"
],
"count": 3
},
{
"id": "Q145",
"type": [
"GPE",
"ORG"
],
"label": "United Kingdom",
"description": "United Kingdom",
"names": [
"G.B.",
"GBR",
"United Kingdom",
"U. K.",
"U K",
"GB",
"UK",
"United Kingdom of Great Britain and Northern Ireland",
"G B R",
"Marea Britanie",
"G. B. R.",
"G B",
"G. B.",
"G.B.R.",
"🇬🇧",
"U.K.",
"Great Britain"
],
"count": 3
},
{
"id": "Q222595",
"type": [
"ORG"
],
"label": "British Army",
"description": "British Army",
"names": [
"British Army",
"army of the United Kingdom"
],
"count": 3
},
{
"id": "Q1190570",
"type": [
"ORG"
],
"label": "Irish Citizen Army",
"description": "Irish Citizen Army",
"names": [
"Irish Citizen Army"
],
"count": 3
},
{
"id": "Q427496",
"type": [
"ORG"
],
"label": "Cumann na mBan",
"description": "Cumann na mBan",
"names": [
"Cumann na mBan",
"CnamB",
"The Irishwomen's Council"
],
"count": 3
}
]
}
}
}
]
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file wikivents-1.0.2.tar.gz
.
File metadata
- Download URL: wikivents-1.0.2.tar.gz
- Upload date:
- Size: 22.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ec06aa3c440aebc07dd9cdd596a4bb5fec150a8c5d591fc301fb1f016445e4dd |
|
MD5 | a5e609122c425df4540a46ef5dcd4994 |
|
BLAKE2b-256 | 047c5b0b77fdeda57f784fc773adbe5bf04799c82a01c905bc57674e25ddc2bd |
File details
Details for the file wikivents-1.0.2-py3-none-any.whl
.
File metadata
- Download URL: wikivents-1.0.2-py3-none-any.whl
- Upload date:
- Size: 41.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3c86be70c312b1500f7650adddfa40274a84fc0204aea35690f62871229824bb |
|
MD5 | 79ed6476e5894c0e774cfbf601169d88 |
|
BLAKE2b-256 | f7a015c720dd55fb2587d542be499dce5d98528c4a3c2b24d9e4fecb3fd2ca90 |