Skip to content

Mash Module API

Overview

The mash module is the read/retrieval layer for source data in GKC workflows.

It includes:

  • Generic Wikibase API retrieval via WikibaseApiClient
  • MediaWiki page wikitext retrieval and SPARQL-block extraction primitives
  • MashSourceAdapter plugin contract for source loader integrations
  • Wikidata loaders and template objects
  • Wikipedia template retrieval
  • Utility functions for template preparation, raw-to-write payload shaping, and label hydration

Use mash for reads and template shaping. Write operations belong in shipper.

Quick Start

from gkc.mash import WikibaseApiClient, WikibaseLoader

# Generic Wikibase read (works with Wikidata or Data Distillery API URLs)
api = WikibaseApiClient(api_url="https://www.wikidata.org/w/api.php")
entity = api.get_entity("Q42")

# Wikidata convenience loader
loader = WikibaseLoader()
template = loader.load_item("Q42")
print(template.summary())

Public API Quick Starts

WikibaseApiClient

from gkc.mash import WikibaseApiClient

client = WikibaseApiClient(api_url="https://datadistillery.wikibase.cloud/w/api.php")

results = client.search_entities(
    label="GKC Property Specification",
    entity_type="item",
    language="en",
    limit=5,
)

batch = client.get_entities(["Q1", "Q2"])
single = client.get_entity("Q1")

raw = client.request({"action": "query", "format": "json", "meta": "siteinfo"})
print(len(results), sorted(batch.keys()), single.get("id"), bool(raw))

WikibaseApiClient.get_and_transform_entity() provides a one-line bridge from raw entity retrieval to shipper-ready payload preparation for templating workflows.

WikibaseApiClient sends a default User-Agent header automatically when one is not provided. You can still pass a custom user_agent value in the constructor to override it for your workflow.

fetch_mediawiki_page_wikitext()

from gkc.mash import WikibaseApiClient, fetch_mediawiki_page_wikitext

api_client = WikibaseApiClient(api_url="https://datadistillery.wikibase.cloud/w/api.php")
wikitext = fetch_mediawiki_page_wikitext(api_client, "Item_talk:Q4")
print(wikitext[:200])

extract_sparql_blocks() and extract_first_sparql_block()

from gkc.mash import extract_first_sparql_block, extract_sparql_blocks

wikitext = """
<sparql>SELECT ?item ?itemLabel WHERE { ?item ?p ?o }</sparql>
<sparql>SELECT ?other WHERE { ?other ?p ?o }</sparql>
"""

all_blocks = extract_sparql_blocks(wikitext)
first_block = extract_first_sparql_block(wikitext)

print(len(all_blocks), first_block[:40])

DataTemplate (Protocol)

from dataclasses import dataclass
from gkc.mash import DataTemplate

@dataclass
class MinimalTemplate(DataTemplate):
    value: str

    def summary(self):
        return {"value": self.value}

    def to_dict(self):
        return {"value": self.value}

template = MinimalTemplate("example")
print(template.summary(), template.to_dict())

MashSourceAdapter (Protocol)

from gkc.mash import MashSourceAdapter, WikibaseMashSourceAdapter

adapter: MashSourceAdapter = WikibaseMashSourceAdapter()
print(adapter.source_name, adapter.can_load("Q42"))

WikibaseMashSourceAdapter

from gkc.mash import WikibaseMashSourceAdapter

adapter = WikibaseMashSourceAdapter()

single = adapter.load("Q42")
batch = adapter.load_many(["Q42", "P31", "E502"])

print(single.summary())
print(sorted(batch.keys()))

WikipediaMashSourceAdapter

from gkc.mash import WikipediaMashSourceAdapter

adapter = WikipediaMashSourceAdapter()
template = adapter.load("Template:Infobox settlement")

print(template.summary())

fetch_property_labels()

from gkc.mash import fetch_property_labels

labels = fetch_property_labels(["P31", "P279"], language="en")
print(labels)

strip_entity_identifiers()

from gkc.mash import strip_entity_identifiers

entity_data = {
    "id": "Q42",
    "lastrevid": 123,
    "claims": {"P31": [{"id": "Q42$abc", "mainsnak": {"hash": "h1"}}]},
}

shell = strip_entity_identifiers(entity_data)
print(shell)

flatten_entity_claims_for_write()

from gkc.mash import flatten_entity_claims_for_write

raw_claims = {
    "P31": [{"mainsnak": {"property": "P31"}}],
    "P279": [{"mainsnak": {"property": "P279"}}],
}

claims = flatten_entity_claims_for_write(raw_claims)
print(len(claims), claims[0]["mainsnak"]["property"])

Use this when you already have a stripped entity shell and only need to convert read-side claims mapping into the flat statement list accepted by shipper.

transform_entity_for_write()

from gkc.mash import transform_entity_for_write

raw_entity = api.get_entity("P31")

item_payload = transform_entity_for_write(
    raw_entity,
    target_entity_type="item",
)

property_payload = transform_entity_for_write(
    raw_entity,
    target_entity_type="property",
    property_datatype="wikibase-item",
)

print(item_payload.keys())
print(property_payload.keys())

This helper performs the full raw-to-write conversion for one entity:

  • strips create-blocking identifiers and hashes
  • removes top-level read-side fields like type, datatype, and sitelinks
  • converts raw claims dicts into the flat statement list expected by shipper
  • preserves labels, descriptions, aliases, statement rank, qualifiers, and references

When targeting a property payload, property_datatype is required unless the source entity is already a property and has a datatype that can be reused.

WikibaseApiClient.get_and_transform_entity()

from gkc.mash import WikibaseApiClient

api = WikibaseApiClient(api_url="https://datadistillery.wikibase.cloud/w/api.php")

payload = api.get_and_transform_entity(
    "P31",
    target_entity_type="item",
)

print(payload["labels"]["en"]["value"])

Use this convenience method when you want to fetch and convert in one step.

ClaimSummary

from gkc.mash import ClaimSummary

claim = ClaimSummary(property_id="P31", value="Q5", rank="normal")
print(claim.property_id, claim.value, claim.rank)

WikibaseItemTemplate

from gkc.mash import (
    WikibaseLoader,
    apply_item_property_filters,
    apply_template_language_filter,
)

loader = WikibaseLoader()
template = loader.load_item("Q42")

apply_item_property_filters(template, include_properties=["P31", "P21"])
template.filter_qualifiers()
template.filter_references()
apply_template_language_filter(template, ["en"])

print(template.summary())
print(template.to_dict().keys())
print(template.to_simple_dict().keys())
print(template.to_shell().keys())
print(template.to_qsv1(for_new_item=False)[:120])

try:
    template.to_gkc_entity_profile()
except NotImplementedError:
    pass

WikibasePropertyTemplate

from gkc.mash import WikibaseLoader, apply_template_language_filter

loader = WikibaseLoader()
prop = loader.load_property("P31")

apply_template_language_filter(prop, ["en"])
print(prop.summary())
print(prop.to_dict().keys())
print(prop.to_shell().keys())

try:
    prop.to_gkc_entity_profile()
except NotImplementedError:
    pass

WikibaseEntitySchemaTemplate

from gkc.mash import WikibaseLoader, apply_template_language_filter

loader = WikibaseLoader()
schema = loader.load_entity_schema("E502")

apply_template_language_filter(schema, ["en"])
print(schema.summary())
print(schema.to_dict().keys())
print(schema.to_shell().keys())

try:
    schema.to_gkc_entity_profile()
except NotImplementedError:
    pass

WikibaseLoader

from gkc.mash import WikibaseLoader

loader = WikibaseLoader(api_url="https://www.wikidata.org/w/api.php")

item = loader.load_item("Q42")
legacy = loader.load("Q42")  # Deprecated alias
batch = loader.load_items(["Q42", "Q5"])
prop = loader.load_property("P31")
schema = loader.load_entity_schema("E502")
raw_entity = loader.load_entity_data("Q42")

print(item.qid, legacy.qid, sorted(batch.keys()), prop.pid, schema.eid, raw_entity.get("id"))

WikipediaTemplate and WikipediaLoader

from gkc.mash import WikipediaLoader

loader = WikipediaLoader()
template = loader.load_template("Infobox settlement")

print(template.summary())
print(template.to_dict().keys())

API Reference (mkdocstrings)

WikibaseApiClient

Generic MediaWiki/Wikibase API helper.

Plain meaning: Reusable client for wbsearchentities and wbgetentities across Wikidata, Data Distillery, or any compatible Wikibase API endpoint.

Source code in gkc/mash/core.py
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
class WikibaseApiClient:
    """Generic MediaWiki/Wikibase API helper.

    Plain meaning: Reusable client for wbsearchentities and wbgetentities across
    Wikidata, Data Distillery, or any compatible Wikibase API endpoint.
    """

    def __init__(
        self,
        api_url: str = "https://www.wikidata.org/w/api.php",
        *,
        session: Optional[requests.Session] = None,
        user_agent: Optional[str] = None,
        timeout: int = 30,
    ):
        self.api_url = api_url
        self.timeout = timeout
        self.session = session or requests.Session()
        self.user_agent = user_agent or DEFAULT_USER_AGENT
        session_headers = getattr(self.session, "headers", None)
        if session_headers is None:
            try:
                setattr(self.session, "headers", {})
                session_headers = self.session.headers
            except Exception:
                session_headers = None

        if hasattr(session_headers, "update"):
            session_headers.update({"User-Agent": self.user_agent})

    def search_entities(
        self,
        *,
        label: str,
        entity_type: str,
        language: str,
        limit: int = 10,
    ) -> list[dict[str, Any]]:
        payload = self.request(
            {
                "action": "wbsearchentities",
                "format": "json",
                "search": label,
                "language": language,
                "type": entity_type,
                "limit": limit,
            }
        )
        return payload.get("search", [])

    def get_entities(self, entity_ids: list[str]) -> dict[str, dict[str, Any]]:
        if not entity_ids:
            return {}

        payload = self.request(
            {
                "action": "wbgetentities",
                "format": "json",
                "ids": "|".join(entity_ids),
            }
        )
        entities = payload.get("entities", {})
        if not isinstance(entities, dict):
            return {}

        return {
            eid: entity_data
            for eid, entity_data in entities.items()
            if isinstance(entity_data, dict) and "missing" not in entity_data
        }

    def get_entity(self, entity_id: str) -> dict[str, Any]:
        entities = self.get_entities([entity_id])
        if entity_id not in entities:
            raise RuntimeError(f"Entity '{entity_id}' not found")
        return entities[entity_id]

    def get_and_transform_entity(
        self,
        entity_id: str,
        *,
        target_entity_type: str = "item",
        property_datatype: Optional[str] = None,
    ) -> dict[str, Any]:
        """Fetch one entity and reshape it into a shipper-ready payload.

        Args:
            entity_id: Wikibase entity ID to fetch (for example ``Q42`` or ``P31``).
            target_entity_type: Target payload kind, either ``"item"`` or
                ``"property"``.
            property_datatype: Datatype to use when targeting a property payload.
                If omitted and the source entity is already a property, the source
                datatype is reused.

        Returns:
            A payload dictionary suitable for ``WikibaseShipper.write_item()`` or
            ``WikibaseShipper.write_property()`` payload input.

        Plain meaning: Fetch an entity and immediately convert it into a write
        payload for templating workflows.
        """

        entity_data = self.get_entity(entity_id)
        return transform_entity_for_write(
            entity_data,
            target_entity_type=target_entity_type,
            property_datatype=property_datatype,
        )

    def request(self, params: dict[str, Any]) -> dict[str, Any]:
        try:
            response = self.session.get(
                self.api_url,
                params=params,
                timeout=self.timeout,
            )
            response.raise_for_status()
        except requests.RequestException as exc:
            raise RuntimeError(f"Wikibase API request failed: {exc}") from exc

        try:
            payload = response.json()
        except ValueError as exc:
            raise RuntimeError("Wikibase API returned non-JSON response") from exc

        if "error" in payload:
            raise RuntimeError(f"Wikibase API returned error: {payload['error']}")

        return payload

get_and_transform_entity(entity_id, *, target_entity_type='item', property_datatype=None)

Fetch one entity and reshape it into a shipper-ready payload.

Parameters:

Name Type Description Default
entity_id str

Wikibase entity ID to fetch (for example Q42 or P31).

required
target_entity_type str

Target payload kind, either "item" or "property".

'item'
property_datatype Optional[str]

Datatype to use when targeting a property payload. If omitted and the source entity is already a property, the source datatype is reused.

None

Returns:

Type Description
dict[str, Any]

A payload dictionary suitable for WikibaseShipper.write_item() or

dict[str, Any]

WikibaseShipper.write_property() payload input.

Plain meaning: Fetch an entity and immediately convert it into a write payload for templating workflows.

Source code in gkc/mash/core.py
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
def get_and_transform_entity(
    self,
    entity_id: str,
    *,
    target_entity_type: str = "item",
    property_datatype: Optional[str] = None,
) -> dict[str, Any]:
    """Fetch one entity and reshape it into a shipper-ready payload.

    Args:
        entity_id: Wikibase entity ID to fetch (for example ``Q42`` or ``P31``).
        target_entity_type: Target payload kind, either ``"item"`` or
            ``"property"``.
        property_datatype: Datatype to use when targeting a property payload.
            If omitted and the source entity is already a property, the source
            datatype is reused.

    Returns:
        A payload dictionary suitable for ``WikibaseShipper.write_item()`` or
        ``WikibaseShipper.write_property()`` payload input.

    Plain meaning: Fetch an entity and immediately convert it into a write
    payload for templating workflows.
    """

    entity_data = self.get_entity(entity_id)
    return transform_entity_for_write(
        entity_data,
        target_entity_type=target_entity_type,
        property_datatype=property_datatype,
    )

fetch_mediawiki_page_wikitext()

Fetch page wikitext from a MediaWiki API endpoint.

Parameters:

Name Type Description Default
api_client WikibaseApiClient

Configured Wikibase/MediaWiki API client.

required
title str

Full page title (for example, Item_talk:Q4).

required

Returns:

Type Description
str

Page wikitext as a string.

Raises:

Type Description
RuntimeError

If page content is missing or cannot be parsed.

Source code in gkc/mash/core.py
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
def fetch_mediawiki_page_wikitext(api_client: WikibaseApiClient, title: str) -> str:
    """Fetch page wikitext from a MediaWiki API endpoint.

    Args:
        api_client: Configured Wikibase/MediaWiki API client.
        title: Full page title (for example, ``Item_talk:Q4``).

    Returns:
        Page wikitext as a string.

    Raises:
        RuntimeError: If page content is missing or cannot be parsed.
    """
    payload = api_client.request(
        {
            "action": "query",
            "format": "json",
            "formatversion": 2,
            "prop": "revisions",
            "rvprop": "content",
            "rvslots": "main",
            "titles": title,
        }
    )

    pages = payload.get("query", {}).get("pages", [])
    if not isinstance(pages, list) or not pages:
        raise RuntimeError(f"MediaWiki page '{title}' not found")

    page = pages[0]
    if not isinstance(page, dict) or page.get("missing"):
        raise RuntimeError(f"MediaWiki page '{title}' not found")

    revisions = page.get("revisions", [])
    if not isinstance(revisions, list) or not revisions:
        raise RuntimeError(f"No revision content found for page '{title}'")

    revision = revisions[0]
    if not isinstance(revision, dict):
        raise RuntimeError(f"Invalid revision payload for page '{title}'")

    slots = revision.get("slots", {})
    main_slot = slots.get("main") if isinstance(slots, dict) else None
    if isinstance(main_slot, dict):
        content = main_slot.get("content")
        if isinstance(content, str):
            return content

    # Backward compatibility for installations using legacy '*' content key.
    content = revision.get("*")
    if isinstance(content, str):
        return content

    raise RuntimeError(f"No wikitext content found for page '{title}'")

extract_sparql_blocks()

Extract SPARQL blocks from wikitext in source order.

Source code in gkc/mash/core.py
534
535
536
537
538
539
540
541
def extract_sparql_blocks(wikitext: str) -> list[str]:
    """Extract SPARQL blocks from wikitext in source order."""
    blocks: list[str] = []
    for match in _SPARQL_BLOCK_PATTERN.findall(wikitext):
        snippet = match.strip()
        if snippet:
            blocks.append(snippet)
    return blocks

extract_first_sparql_block()

Return the first SPARQL block from wikitext.

Raises:

Type Description
RuntimeError

If no <sparql>...</sparql> block exists.

Source code in gkc/mash/core.py
544
545
546
547
548
549
550
551
552
553
def extract_first_sparql_block(wikitext: str) -> str:
    """Return the first SPARQL block from wikitext.

    Raises:
        RuntimeError: If no ``<sparql>...</sparql>`` block exists.
    """
    blocks = extract_sparql_blocks(wikitext)
    if not blocks:
        raise RuntimeError("No <sparql> block found in page content")
    return blocks[0]

DataTemplate

Bases: Protocol

Abstract interface for all data templates in the mash module.

All template types (Wikidata, CSV, JSON, etc.) should implement this protocol to ensure consistent behavior across different data sources.

This protocol defines the minimum interface that templates must provide: - summary(): Return a dict with basic metadata about the template - to_dict(): Serialize the template to a dictionary

Future template implementations should follow this pattern to ensure compatibility with formatters and other downstream components.

Plain meaning: The blueprint that all data templates must follow.

Source code in gkc/mash/core.py
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
class DataTemplate(Protocol):
    """Abstract interface for all data templates in the mash module.

    All template types (Wikidata, CSV, JSON, etc.) should implement this
    protocol to ensure consistent behavior across different data sources.

    This protocol defines the minimum interface that templates must provide:
    - summary(): Return a dict with basic metadata about the template
    - to_dict(): Serialize the template to a dictionary

    Future template implementations should follow this pattern to ensure
    compatibility with formatters and other downstream components.

    Plain meaning: The blueprint that all data templates must follow.
    """

    def summary(self) -> dict[str, Any]:
        """Return a summary of the template for display.

        Plain meaning: Get a quick overview without full details.
        """
        ...

    def to_dict(self) -> dict[str, Any]:
        """Serialize to a dictionary.

        Plain meaning: Return the original entity JSON for round-trip safety.
        """
        ...

summary()

Return a summary of the template for display.

Plain meaning: Get a quick overview without full details.

Source code in gkc/mash/core.py
1131
1132
1133
1134
1135
1136
def summary(self) -> dict[str, Any]:
    """Return a summary of the template for display.

    Plain meaning: Get a quick overview without full details.
    """
    ...

to_dict()

Serialize to a dictionary.

Plain meaning: Return the original entity JSON for round-trip safety.

Source code in gkc/mash/core.py
1138
1139
1140
1141
1142
1143
def to_dict(self) -> dict[str, Any]:
    """Serialize to a dictionary.

    Plain meaning: Return the original entity JSON for round-trip safety.
    """
    ...

MashSourceAdapter

Bases: Protocol

Contract for mash source adapters.

A source adapter handles loading one or more source references and returning templates that satisfy the DataTemplate protocol.

Source code in gkc/mash/protocols.py
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
@runtime_checkable
class MashSourceAdapter(Protocol):
    """Contract for mash source adapters.

    A source adapter handles loading one or more source references and returning
    templates that satisfy the ``DataTemplate`` protocol.
    """

    source_name: str

    def can_load(self, source_ref: str) -> bool:
        """Return True when this adapter can load the provided source reference."""

    def load(self, source_ref: str) -> DataTemplate:
        """Load one source reference into a template."""

    def load_many(self, source_refs: list[str]) -> dict[str, DataTemplate]:
        """Load multiple source references into templates keyed by source ref."""

can_load(source_ref)

Return True when this adapter can load the provided source reference.

Source code in gkc/mash/protocols.py
24
25
def can_load(self, source_ref: str) -> bool:
    """Return True when this adapter can load the provided source reference."""

load(source_ref)

Load one source reference into a template.

Source code in gkc/mash/protocols.py
27
28
def load(self, source_ref: str) -> DataTemplate:
    """Load one source reference into a template."""

load_many(source_refs)

Load multiple source references into templates keyed by source ref.

Source code in gkc/mash/protocols.py
30
31
def load_many(self, source_refs: list[str]) -> dict[str, DataTemplate]:
    """Load multiple source references into templates keyed by source ref."""

WikibaseMashSourceAdapter

Bases: MashSourceAdapter

Mash source adapter for Wikibase entity references.

Supports item/property/schema IDs and delegates loading to WikibaseLoader.

Source code in gkc/mash/core.py
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
class WikibaseMashSourceAdapter(MashSourceAdapter):
    """Mash source adapter for Wikibase entity references.

    Supports item/property/schema IDs and delegates loading to ``WikibaseLoader``.
    """

    source_name = "wikibase"

    def __init__(self, loader: Optional[WikibaseLoader] = None):
        self.loader = loader or WikibaseLoader()

    @staticmethod
    def _is_wikibase_entity_ref(source_ref: str) -> bool:
        if not source_ref or len(source_ref) < 2:
            return False

        prefix = source_ref[0]
        suffix = source_ref[1:]
        return prefix in {"Q", "P", "E"} and suffix.isdigit()

    def can_load(self, source_ref: str) -> bool:
        """Return True for Wikibase entity IDs (Q/P/E)."""
        return self._is_wikibase_entity_ref(source_ref)

    def load(self, source_ref: str) -> DataTemplate:
        """Load a Wikibase entity ID into the appropriate template type."""
        if not self.can_load(source_ref):
            raise ValueError(
                f"WikibaseMashSourceAdapter cannot load source reference: {source_ref}"
            )

        prefix = source_ref[0]
        if prefix == "Q":
            return self.loader.load_item(source_ref)
        if prefix == "P":
            return self.loader.load_property(source_ref)
        if prefix == "E":
            return self.loader.load_entity_schema(source_ref)

        raise ValueError(f"Unsupported Wikibase entity reference: {source_ref}")

    def load_many(self, source_refs: list[str]) -> dict[str, DataTemplate]:
        """Load multiple Wikibase references into templates keyed by source ref."""
        if not source_refs:
            return {}

        invalid_refs = [
            source_ref for source_ref in source_refs if not self.can_load(source_ref)
        ]
        if invalid_refs:
            raise ValueError(
                f"Invalid Wikibase source references: {', '.join(invalid_refs)}"
            )

        loaded: dict[str, DataTemplate] = {}

        qids = [source_ref for source_ref in source_refs if source_ref.startswith("Q")]
        if qids:
            loaded.update(self.loader.load_items(qids))

        for source_ref in source_refs:
            if source_ref in loaded:
                continue
            loaded[source_ref] = self.load(source_ref)

        return loaded

can_load(source_ref)

Return True for Wikibase entity IDs (Q/P/E).

Source code in gkc/mash/core.py
2629
2630
2631
def can_load(self, source_ref: str) -> bool:
    """Return True for Wikibase entity IDs (Q/P/E)."""
    return self._is_wikibase_entity_ref(source_ref)

load(source_ref)

Load a Wikibase entity ID into the appropriate template type.

Source code in gkc/mash/core.py
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
def load(self, source_ref: str) -> DataTemplate:
    """Load a Wikibase entity ID into the appropriate template type."""
    if not self.can_load(source_ref):
        raise ValueError(
            f"WikibaseMashSourceAdapter cannot load source reference: {source_ref}"
        )

    prefix = source_ref[0]
    if prefix == "Q":
        return self.loader.load_item(source_ref)
    if prefix == "P":
        return self.loader.load_property(source_ref)
    if prefix == "E":
        return self.loader.load_entity_schema(source_ref)

    raise ValueError(f"Unsupported Wikibase entity reference: {source_ref}")

load_many(source_refs)

Load multiple Wikibase references into templates keyed by source ref.

Source code in gkc/mash/core.py
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
def load_many(self, source_refs: list[str]) -> dict[str, DataTemplate]:
    """Load multiple Wikibase references into templates keyed by source ref."""
    if not source_refs:
        return {}

    invalid_refs = [
        source_ref for source_ref in source_refs if not self.can_load(source_ref)
    ]
    if invalid_refs:
        raise ValueError(
            f"Invalid Wikibase source references: {', '.join(invalid_refs)}"
        )

    loaded: dict[str, DataTemplate] = {}

    qids = [source_ref for source_ref in source_refs if source_ref.startswith("Q")]
    if qids:
        loaded.update(self.loader.load_items(qids))

    for source_ref in source_refs:
        if source_ref in loaded:
            continue
        loaded[source_ref] = self.load(source_ref)

    return loaded

WikipediaMashSourceAdapter

Bases: MashSourceAdapter

Mash source adapter for Wikipedia template references.

Source code in gkc/mash/core.py
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
class WikipediaMashSourceAdapter(MashSourceAdapter):
    """Mash source adapter for Wikipedia template references."""

    source_name = "wikipedia-template"

    def __init__(self, loader: Optional[WikipediaLoader] = None):
        self.loader = loader or WikipediaLoader()

    @staticmethod
    def _normalize_template_name(source_ref: str) -> str:
        name = source_ref.strip()
        if name.startswith("Template:"):
            return name.removeprefix("Template:")
        return name

    def can_load(self, source_ref: str) -> bool:
        """Return True for non-empty template references."""
        return bool(source_ref and source_ref.strip())

    def load(self, source_ref: str) -> WikipediaTemplate:
        """Load a Wikipedia template by name."""
        if not self.can_load(source_ref):
            raise ValueError(
                "WikipediaMashSourceAdapter requires a non-empty template reference"
            )

        template_name = self._normalize_template_name(source_ref)
        return self.loader.load_template(template_name)

    def load_many(self, source_refs: list[str]) -> dict[str, WikipediaTemplate]:
        """Load multiple Wikipedia templates keyed by the original source ref."""
        loaded: dict[str, WikipediaTemplate] = {}
        for source_ref in source_refs:
            loaded[source_ref] = self.load(source_ref)
        return loaded

can_load(source_ref)

Return True for non-empty template references.

Source code in gkc/mash/core.py
2692
2693
2694
def can_load(self, source_ref: str) -> bool:
    """Return True for non-empty template references."""
    return bool(source_ref and source_ref.strip())

load(source_ref)

Load a Wikipedia template by name.

Source code in gkc/mash/core.py
2696
2697
2698
2699
2700
2701
2702
2703
2704
def load(self, source_ref: str) -> WikipediaTemplate:
    """Load a Wikipedia template by name."""
    if not self.can_load(source_ref):
        raise ValueError(
            "WikipediaMashSourceAdapter requires a non-empty template reference"
        )

    template_name = self._normalize_template_name(source_ref)
    return self.loader.load_template(template_name)

load_many(source_refs)

Load multiple Wikipedia templates keyed by the original source ref.

Source code in gkc/mash/core.py
2706
2707
2708
2709
2710
2711
def load_many(self, source_refs: list[str]) -> dict[str, WikipediaTemplate]:
    """Load multiple Wikipedia templates keyed by the original source ref."""
    loaded: dict[str, WikipediaTemplate] = {}
    for source_ref in source_refs:
        loaded[source_ref] = self.load(source_ref)
    return loaded

fetch_property_labels()

Fetch human-readable labels for Wikidata properties using SPARQL.

Parameters:

Name Type Description Default
property_ids list[str]

List of property IDs (e.g., ['P31', 'P21']).

required
language Optional[str]

Language code for labels (defaults to package configuration).

None

Returns:

Type Description
dict[str, str]

Dict mapping property IDs to their labels (e.g., {'P31': 'instance of'}).

Plain meaning: Look up property names efficiently to make QS output more readable.

Source code in gkc/mash/core.py
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
def fetch_property_labels(
    property_ids: list[str], language: Optional[str] = None
) -> dict[str, str]:
    """Fetch human-readable labels for Wikidata properties using SPARQL.

    Args:
        property_ids: List of property IDs (e.g., ['P31', 'P21']).
        language: Language code for labels (defaults to package configuration).

    Returns:
        Dict mapping property IDs to their labels (e.g., {'P31': 'instance of'}).

    Plain meaning: Look up property names efficiently to make QS output more readable.
    """
    if not property_ids:
        return {}
    if language is None:
        import gkc

        languages = gkc.get_languages()
        if languages == "all":
            language = "en"
        elif isinstance(languages, str):
            language = languages
        else:
            language = languages[0] if languages else "en"
    return fetch_entity_labels(property_ids, languages=[language])

strip_entity_identifiers()

Return a copy of entity data with identifiers stripped for new-item use.

Removes fields that prevent using the JSON as a new item template: - Item-level: id, pageid, lastrevid, modified, ns, title - Statement-level: id (statement GUID) - Snak-level: hash (in mainsnak, qualifiers, and references)

Plain meaning: Remove IDs that prevent using the JSON as a new item template.

Source code in gkc/mash/core.py
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
def strip_entity_identifiers(entity_data: dict[str, Any]) -> dict[str, Any]:
    """Return a copy of entity data with identifiers stripped for new-item use.

    Removes fields that prevent using the JSON as a new item template:
    - Item-level: id, pageid, lastrevid, modified, ns, title
    - Statement-level: id (statement GUID)
    - Snak-level: hash (in mainsnak, qualifiers, and references)

    Plain meaning: Remove IDs that prevent using the JSON as a new item template.
    """

    cleaned = copy.deepcopy(entity_data)

    # Remove item-level identifiers and metadata
    cleaned.pop("id", None)
    cleaned.pop("pageid", None)
    cleaned.pop("lastrevid", None)
    cleaned.pop("modified", None)
    cleaned.pop("ns", None)
    cleaned.pop("title", None)

    # Remove statement-level identifiers and hashes
    claims = cleaned.get("claims")
    if isinstance(claims, dict):
        for statements in claims.values():
            if not isinstance(statements, list):
                continue
            for statement in statements:
                if isinstance(statement, dict):
                    statement.pop("id", None)

                    # Remove hash from mainsnak
                    mainsnak = statement.get("mainsnak")
                    if isinstance(mainsnak, dict):
                        mainsnak.pop("hash", None)

                    # Remove hash from qualifiers
                    qualifiers = statement.get("qualifiers")
                    if isinstance(qualifiers, dict):
                        for qualifier_snaks in qualifiers.values():
                            if isinstance(qualifier_snaks, list):
                                for snak in qualifier_snaks:
                                    if isinstance(snak, dict):
                                        snak.pop("hash", None)

                    # Remove hash from references
                    references = statement.get("references")
                    if isinstance(references, list):
                        for reference in references:
                            if isinstance(reference, dict):
                                reference.pop("hash", None)
                                ref_snaks = reference.get("snaks")
                                if isinstance(ref_snaks, dict):
                                    for ref_snak_list in ref_snaks.values():
                                        if isinstance(ref_snak_list, list):
                                            for snak in ref_snak_list:
                                                if isinstance(snak, dict):
                                                    snak.pop("hash", None)

    return cleaned

flatten_entity_claims_for_write()

Flatten raw Wikibase claims into wbeditentity write-payload claim list.

Parameters:

Name Type Description Default
raw_claims Any

Claims structure from wbgetentities or a list of already flattened statement dictionaries.

required

Returns:

Type Description
list[dict[str, Any]]

A deep-copied list of statement dictionaries in the shape expected by

list[dict[str, Any]]

shipper payload validation.

Plain meaning: Convert read-side claims mapping into the flat statement list used for writes.

Source code in gkc/mash/core.py
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
def flatten_entity_claims_for_write(raw_claims: Any) -> list[dict[str, Any]]:
    """Flatten raw Wikibase claims into wbeditentity write-payload claim list.

    Args:
        raw_claims: Claims structure from ``wbgetentities`` or a list of already
            flattened statement dictionaries.

    Returns:
        A deep-copied list of statement dictionaries in the shape expected by
        shipper payload validation.

    Plain meaning: Convert read-side claims mapping into the flat statement list
    used for writes.
    """

    flattened: list[dict[str, Any]] = []

    if isinstance(raw_claims, dict):
        for statement_list in raw_claims.values():
            if not isinstance(statement_list, list):
                continue
            for statement in statement_list:
                if isinstance(statement, dict):
                    flattened.append(copy.deepcopy(statement))
        return flattened

    if isinstance(raw_claims, list):
        for statement in raw_claims:
            if isinstance(statement, dict):
                flattened.append(copy.deepcopy(statement))

    return flattened

transform_entity_for_write()

Convert raw wbgetentities JSON into a shipper-ready payload.

Parameters:

Name Type Description Default
entity_data dict[str, Any]

Raw entity JSON for a single entity from wbgetentities.

required
target_entity_type str

Target payload kind, either "item" or "property".

'item'
property_datatype Optional[str]

Datatype to use when targeting a property payload. If omitted and the source entity is already a property, the source datatype is reused for validation purposes.

None

Returns:

Type Description
dict[str, Any]

A deep-copied payload dictionary suitable for the payload argument of

dict[str, Any]

WikibaseShipper.write_item() or WikibaseShipper.write_property().

Raises:

Type Description
ValueError

If target_entity_type is invalid or if a property target is requested without a datatype that can be resolved.

Plain meaning: Turn one raw entity response into a reusable write payload.

Source code in gkc/mash/core.py
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
def transform_entity_for_write(
    entity_data: dict[str, Any],
    *,
    target_entity_type: str = "item",
    property_datatype: Optional[str] = None,
) -> dict[str, Any]:
    """Convert raw ``wbgetentities`` JSON into a shipper-ready payload.

    Args:
        entity_data: Raw entity JSON for a single entity from ``wbgetentities``.
        target_entity_type: Target payload kind, either ``"item"`` or
            ``"property"``.
        property_datatype: Datatype to use when targeting a property payload.
            If omitted and the source entity is already a property, the source
            datatype is reused for validation purposes.

    Returns:
        A deep-copied payload dictionary suitable for the ``payload`` argument of
        ``WikibaseShipper.write_item()`` or ``WikibaseShipper.write_property()``.

    Raises:
        ValueError: If ``target_entity_type`` is invalid or if a property target
            is requested without a datatype that can be resolved.

    Plain meaning: Turn one raw entity response into a reusable write payload.
    """

    normalized_target_entity_type = str(target_entity_type).strip().lower()
    if normalized_target_entity_type not in {"item", "property"}:
        raise ValueError("target_entity_type must be either 'item' or 'property'")

    source_entity_type = entity_data.get("type")
    source_datatype = entity_data.get("datatype")
    resolved_property_datatype = property_datatype

    if normalized_target_entity_type == "property":
        if not resolved_property_datatype and source_entity_type == "property":
            if isinstance(source_datatype, str) and source_datatype.strip():
                resolved_property_datatype = source_datatype

        if (
            not isinstance(resolved_property_datatype, str)
            or not resolved_property_datatype.strip()
        ):
            raise ValueError(
                "property_datatype is required when transforming a non-property "
                "entity into a property payload"
            )

        resolved_property_datatype = canonicalize_wikibase_datatype(
            resolved_property_datatype
        )

    transformed = strip_entity_identifiers(entity_data)
    transformed.pop("type", None)
    transformed.pop("datatype", None)
    transformed.pop("sitelinks", None)

    flattened_claims = flatten_entity_claims_for_write(transformed.get("claims"))
    if flattened_claims:
        transformed["claims"] = flattened_claims
    else:
        transformed.pop("claims", None)

    return transformed

ClaimSummary

Simplified representation of a Wikidata claim for display and export.

Plain meaning: A simple view of a claim without requiring RDF knowledge.

Source code in gkc/mash/core.py
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
@dataclass
class ClaimSummary:
    """Simplified representation of a Wikidata claim for display and export.

    Plain meaning: A simple view of a claim without requiring RDF knowledge.
    """

    property_id: str
    value: str
    qualifiers: list[dict] = field(default_factory=list)
    references: list[dict] = field(default_factory=list)
    rank: str = "normal"
    value_metadata: Optional[dict[str, Any]] = None

WikibaseItemTemplate

An extracted Wikidata item ready for filtering and export.

This is the Wikidata-specific implementation of the DataTemplate protocol.

Plain meaning: A loaded Wikidata item template ready for modification.

Source code in gkc/mash/core.py
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
@dataclass
class WikibaseItemTemplate:
    """An extracted Wikidata item ready for filtering and export.

    This is the Wikidata-specific implementation of the DataTemplate protocol.

    Plain meaning: A loaded Wikidata item template ready for modification.
    """

    qid: str
    labels: dict[str, str]
    descriptions: dict[str, str]
    aliases: dict[str, list[str]]
    claims: list[ClaimSummary]
    entity_data: dict[str, Any]

    def filter_qualifiers(self) -> None:
        """Remove all qualifiers from claims in-place.

        Plain meaning: Strip qualifier detail from claims.
        """

        for claim in self.claims:
            claim.qualifiers = []

        claims = self.entity_data.get("claims")
        if isinstance(claims, dict):
            for statements in claims.values():
                if not isinstance(statements, list):
                    continue
                for statement in statements:
                    if isinstance(statement, dict):
                        statement.pop("qualifiers", None)
                        statement.pop("qualifiers-order", None)

    def filter_references(self) -> None:
        """Remove all references from claims in-place.

        Plain meaning: Strip reference detail from claims.
        """

        for claim in self.claims:
            claim.references = []

        claims = self.entity_data.get("claims")
        if isinstance(claims, dict):
            for statements in claims.values():
                if not isinstance(statements, list):
                    continue
                for statement in statements:
                    if isinstance(statement, dict):
                        statement.pop("references", None)

    def summary(self) -> dict[str, Any]:
        """Return a summary of the template for display.

        Plain meaning: Get a quick overview without full details.
        """

        return {
            "qid": self.qid,
            "labels": self.labels,
            "descriptions": self.descriptions,
            "total_statements": len(self.claims),
            "aliases": self.aliases,
        }

    def to_dict(self) -> dict[str, Any]:
        """Serialize to a dictionary.

        Plain meaning: Convert to a form suitable for JSON export.
        """

        return copy.deepcopy(self.entity_data)

    def to_simple_dict(self) -> dict[str, Any]:
        """Serialize to a simplified dictionary.

        Plain meaning: Convert to a compact summary structure.
        """

        return {
            "qid": self.qid,
            "labels": self.labels,
            "descriptions": self.descriptions,
            "aliases": self.aliases,
            "claims": [
                {
                    "property_id": c.property_id,
                    "value": c.value,
                    "qualifiers": c.qualifiers,
                    "references": c.references,
                    "rank": c.rank,
                }
                for c in self.claims
            ],
        }

    def to_shell(self) -> dict[str, Any]:
        """Strip identifiers and metadata to create a shell for new item creation.

        Returns entity data with all system IDs, metadata, and hashes removed,
        suitable for use as a template for creating new items.

        Returns:
            Dict with identifiers stripped, ready for new item creation.

        Plain meaning: Prepare this template as a clean shell for a new item.
        """
        return strip_entity_identifiers(self.entity_data)

    def to_qsv1(
        self, for_new_item: bool = False, entity_labels: Optional[dict[str, str]] = None
    ) -> str:
        """Convert to QuickStatements V1 format.

        Args:
            for_new_item: If True, use CREATE/LAST syntax for new items.
                         If False, use the item's QID for updates.
            entity_labels: Optional dict mapping entity IDs to labels for comments.

        Returns:
            QuickStatements V1 formatted string.

        Plain meaning: Export as QuickStatements commands for bulk operations.
        """
        from gkc.mash_formatters import QSV1Formatter

        formatter = QSV1Formatter(entity_labels=entity_labels or {})
        return formatter.format(self, for_new_item=for_new_item)

    def to_gkc_entity_profile(self) -> dict[str, Any]:
        """Convert to GKC Entity Profile format.

        Returns:
            Dict representing the GKC Entity Profile.

        Raises:
            NotImplementedError: This transformation is not yet implemented for items.

        Plain meaning: Transform into a GKC Entity Profile (not yet implemented).
        """
        raise NotImplementedError(
            "Item to GKC Entity Profile transformation is not yet implemented. "
            "This will be added in a future version."
        )

filter_qualifiers()

Remove all qualifiers from claims in-place.

Plain meaning: Strip qualifier detail from claims.

Source code in gkc/mash/core.py
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
def filter_qualifiers(self) -> None:
    """Remove all qualifiers from claims in-place.

    Plain meaning: Strip qualifier detail from claims.
    """

    for claim in self.claims:
        claim.qualifiers = []

    claims = self.entity_data.get("claims")
    if isinstance(claims, dict):
        for statements in claims.values():
            if not isinstance(statements, list):
                continue
            for statement in statements:
                if isinstance(statement, dict):
                    statement.pop("qualifiers", None)
                    statement.pop("qualifiers-order", None)

filter_references()

Remove all references from claims in-place.

Plain meaning: Strip reference detail from claims.

Source code in gkc/mash/core.py
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
def filter_references(self) -> None:
    """Remove all references from claims in-place.

    Plain meaning: Strip reference detail from claims.
    """

    for claim in self.claims:
        claim.references = []

    claims = self.entity_data.get("claims")
    if isinstance(claims, dict):
        for statements in claims.values():
            if not isinstance(statements, list):
                continue
            for statement in statements:
                if isinstance(statement, dict):
                    statement.pop("references", None)

summary()

Return a summary of the template for display.

Plain meaning: Get a quick overview without full details.

Source code in gkc/mash/core.py
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
def summary(self) -> dict[str, Any]:
    """Return a summary of the template for display.

    Plain meaning: Get a quick overview without full details.
    """

    return {
        "qid": self.qid,
        "labels": self.labels,
        "descriptions": self.descriptions,
        "total_statements": len(self.claims),
        "aliases": self.aliases,
    }

to_dict()

Serialize to a dictionary.

Plain meaning: Convert to a form suitable for JSON export.

Source code in gkc/mash/core.py
1420
1421
1422
1423
1424
1425
1426
def to_dict(self) -> dict[str, Any]:
    """Serialize to a dictionary.

    Plain meaning: Convert to a form suitable for JSON export.
    """

    return copy.deepcopy(self.entity_data)

to_gkc_entity_profile()

Convert to GKC Entity Profile format.

Returns:

Type Description
dict[str, Any]

Dict representing the GKC Entity Profile.

Raises:

Type Description
NotImplementedError

This transformation is not yet implemented for items.

Plain meaning: Transform into a GKC Entity Profile (not yet implemented).

Source code in gkc/mash/core.py
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
def to_gkc_entity_profile(self) -> dict[str, Any]:
    """Convert to GKC Entity Profile format.

    Returns:
        Dict representing the GKC Entity Profile.

    Raises:
        NotImplementedError: This transformation is not yet implemented for items.

    Plain meaning: Transform into a GKC Entity Profile (not yet implemented).
    """
    raise NotImplementedError(
        "Item to GKC Entity Profile transformation is not yet implemented. "
        "This will be added in a future version."
    )

to_qsv1(for_new_item=False, entity_labels=None)

Convert to QuickStatements V1 format.

Parameters:

Name Type Description Default
for_new_item bool

If True, use CREATE/LAST syntax for new items. If False, use the item's QID for updates.

False
entity_labels Optional[dict[str, str]]

Optional dict mapping entity IDs to labels for comments.

None

Returns:

Type Description
str

QuickStatements V1 formatted string.

Plain meaning: Export as QuickStatements commands for bulk operations.

Source code in gkc/mash/core.py
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
def to_qsv1(
    self, for_new_item: bool = False, entity_labels: Optional[dict[str, str]] = None
) -> str:
    """Convert to QuickStatements V1 format.

    Args:
        for_new_item: If True, use CREATE/LAST syntax for new items.
                     If False, use the item's QID for updates.
        entity_labels: Optional dict mapping entity IDs to labels for comments.

    Returns:
        QuickStatements V1 formatted string.

    Plain meaning: Export as QuickStatements commands for bulk operations.
    """
    from gkc.mash_formatters import QSV1Formatter

    formatter = QSV1Formatter(entity_labels=entity_labels or {})
    return formatter.format(self, for_new_item=for_new_item)

to_shell()

Strip identifiers and metadata to create a shell for new item creation.

Returns entity data with all system IDs, metadata, and hashes removed, suitable for use as a template for creating new items.

Returns:

Type Description
dict[str, Any]

Dict with identifiers stripped, ready for new item creation.

Plain meaning: Prepare this template as a clean shell for a new item.

Source code in gkc/mash/core.py
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
def to_shell(self) -> dict[str, Any]:
    """Strip identifiers and metadata to create a shell for new item creation.

    Returns entity data with all system IDs, metadata, and hashes removed,
    suitable for use as a template for creating new items.

    Returns:
        Dict with identifiers stripped, ready for new item creation.

    Plain meaning: Prepare this template as a clean shell for a new item.
    """
    return strip_entity_identifiers(self.entity_data)

to_simple_dict()

Serialize to a simplified dictionary.

Plain meaning: Convert to a compact summary structure.

Source code in gkc/mash/core.py
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
def to_simple_dict(self) -> dict[str, Any]:
    """Serialize to a simplified dictionary.

    Plain meaning: Convert to a compact summary structure.
    """

    return {
        "qid": self.qid,
        "labels": self.labels,
        "descriptions": self.descriptions,
        "aliases": self.aliases,
        "claims": [
            {
                "property_id": c.property_id,
                "value": c.value,
                "qualifiers": c.qualifiers,
                "references": c.references,
                "rank": c.rank,
            }
            for c in self.claims
        ],
    }

WikibasePropertyTemplate

An extracted Wikidata property ready for filtering and export.

This is the property-specific implementation of the DataTemplate protocol.

Plain meaning: A loaded Wikidata property template ready for modification.

Source code in gkc/mash/core.py
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
@dataclass
class WikibasePropertyTemplate:
    """An extracted Wikidata property ready for filtering and export.

    This is the property-specific implementation of the DataTemplate protocol.

    Plain meaning: A loaded Wikidata property template ready for modification.
    """

    pid: str
    labels: dict[str, str]
    descriptions: dict[str, str]
    aliases: dict[str, list[str]]
    datatype: Optional[str]
    formatter_url: Optional[str]
    entity_data: dict[str, Any]

    def summary(self) -> dict[str, Any]:
        """Return a summary of the template for display.

        Plain meaning: Get a quick overview without full details.
        """
        return {
            "pid": self.pid,
            "labels": self.labels,
            "descriptions": self.descriptions,
            "datatype": self.datatype,
            "formatter_url": self.formatter_url,
            "aliases": self.aliases,
        }

    def to_dict(self) -> dict[str, Any]:
        """Serialize to a dictionary.

        Plain meaning: Convert to a form suitable for JSON export.
        """
        return copy.deepcopy(self.entity_data)

    def to_shell(self) -> dict[str, Any]:
        """Strip identifiers and metadata to create a shell for new property creation.

        Returns entity data with all system IDs, metadata, and hashes removed,
        suitable for use as a template for creating new properties.

        Returns:
            Dict with identifiers stripped, ready for new property creation.

        Plain meaning: Prepare this template as a clean shell for a new property.
        """
        return strip_entity_identifiers(self.entity_data)

    def to_gkc_entity_profile(self) -> dict[str, Any]:
        """Convert to GKC Entity Profile format.

        Returns:
            Dict representing the GKC Entity Profile.

        Raises:
            NotImplementedError: This transformation is not yet implemented
                for properties.

        Plain meaning: Transform into a GKC Entity Profile
            (not yet implemented).
        """
        raise NotImplementedError(
            "Property to GKC Entity Profile transformation is not yet implemented. "
            "This will be added in a future version."
        )

summary()

Return a summary of the template for display.

Plain meaning: Get a quick overview without full details.

Source code in gkc/mash/core.py
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
def summary(self) -> dict[str, Any]:
    """Return a summary of the template for display.

    Plain meaning: Get a quick overview without full details.
    """
    return {
        "pid": self.pid,
        "labels": self.labels,
        "descriptions": self.descriptions,
        "datatype": self.datatype,
        "formatter_url": self.formatter_url,
        "aliases": self.aliases,
    }

to_dict()

Serialize to a dictionary.

Plain meaning: Convert to a form suitable for JSON export.

Source code in gkc/mash/core.py
1532
1533
1534
1535
1536
1537
def to_dict(self) -> dict[str, Any]:
    """Serialize to a dictionary.

    Plain meaning: Convert to a form suitable for JSON export.
    """
    return copy.deepcopy(self.entity_data)

to_gkc_entity_profile()

Convert to GKC Entity Profile format.

Returns:

Type Description
dict[str, Any]

Dict representing the GKC Entity Profile.

Raises:

Type Description
NotImplementedError

This transformation is not yet implemented for properties.

Transform into a GKC Entity Profile

(not yet implemented).

Source code in gkc/mash/core.py
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
def to_gkc_entity_profile(self) -> dict[str, Any]:
    """Convert to GKC Entity Profile format.

    Returns:
        Dict representing the GKC Entity Profile.

    Raises:
        NotImplementedError: This transformation is not yet implemented
            for properties.

    Plain meaning: Transform into a GKC Entity Profile
        (not yet implemented).
    """
    raise NotImplementedError(
        "Property to GKC Entity Profile transformation is not yet implemented. "
        "This will be added in a future version."
    )

to_shell()

Strip identifiers and metadata to create a shell for new property creation.

Returns entity data with all system IDs, metadata, and hashes removed, suitable for use as a template for creating new properties.

Returns:

Type Description
dict[str, Any]

Dict with identifiers stripped, ready for new property creation.

Plain meaning: Prepare this template as a clean shell for a new property.

Source code in gkc/mash/core.py
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
def to_shell(self) -> dict[str, Any]:
    """Strip identifiers and metadata to create a shell for new property creation.

    Returns entity data with all system IDs, metadata, and hashes removed,
    suitable for use as a template for creating new properties.

    Returns:
        Dict with identifiers stripped, ready for new property creation.

    Plain meaning: Prepare this template as a clean shell for a new property.
    """
    return strip_entity_identifiers(self.entity_data)

WikibaseEntitySchemaTemplate

An extracted Wikidata EntitySchema ready for filtering and export.

This is the EntitySchema-specific implementation of the DataTemplate protocol.

Plain meaning: A loaded Wikidata EntitySchema template ready for modification.

Source code in gkc/mash/core.py
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
@dataclass
class WikibaseEntitySchemaTemplate:
    """An extracted Wikidata EntitySchema ready for filtering and export.

    This is the EntitySchema-specific implementation of the DataTemplate protocol.

    Plain meaning: A loaded Wikidata EntitySchema template ready for modification.
    """

    eid: str
    labels: dict[str, str]
    descriptions: dict[str, str]
    schema_text: str
    entity_data: dict[str, Any]

    def summary(self) -> dict[str, Any]:
        """Return a summary of the template for display.

        Plain meaning: Get a quick overview without full details.
        """
        return {
            "eid": self.eid,
            "labels": self.labels,
            "descriptions": self.descriptions,
            "schema_text_length": len(self.schema_text),
        }

    def to_dict(self) -> dict[str, Any]:
        """Serialize to a dictionary.

        Plain meaning: Convert to a form suitable for JSON export.
        """
        return copy.deepcopy(self.entity_data)

    def to_shell(self) -> dict[str, Any]:
        """Strip identifiers and metadata for new EntitySchema creation.

        Returns entity data with all system IDs and metadata removed,
        suitable for use as a template for creating new EntitySchemas.

        Returns:
            Dict with identifiers stripped, ready for new EntitySchema creation.

        Plain meaning: Prepare this template as a clean shell for a new EntitySchema.
        """
        return strip_entity_identifiers(self.entity_data)

    def to_gkc_entity_profile(self) -> dict[str, Any]:
        """Convert to GKC Entity Profile format.

        Returns:
            Dict representing the GKC Entity Profile.

        Raises:
            NotImplementedError: EntitySchema to Entity Profile transformation
                is not yet supported. This functionality will be restored
                when the new Entity Profile architecture is finalized.

        Plain meaning: Transform into a GKC Entity Profile (not yet supported).
        """
        raise NotImplementedError(
            "EntitySchema to GKC Entity Profile transformation is not yet supported. "
            "This functionality will be restored when the new Entity Profile "
            "architecture is finalized."
        )

summary()

Return a summary of the template for display.

Plain meaning: Get a quick overview without full details.

Source code in gkc/mash/core.py
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
def summary(self) -> dict[str, Any]:
    """Return a summary of the template for display.

    Plain meaning: Get a quick overview without full details.
    """
    return {
        "eid": self.eid,
        "labels": self.labels,
        "descriptions": self.descriptions,
        "schema_text_length": len(self.schema_text),
    }

to_dict()

Serialize to a dictionary.

Plain meaning: Convert to a form suitable for JSON export.

Source code in gkc/mash/core.py
1598
1599
1600
1601
1602
1603
def to_dict(self) -> dict[str, Any]:
    """Serialize to a dictionary.

    Plain meaning: Convert to a form suitable for JSON export.
    """
    return copy.deepcopy(self.entity_data)

to_gkc_entity_profile()

Convert to GKC Entity Profile format.

Returns:

Type Description
dict[str, Any]

Dict representing the GKC Entity Profile.

Raises:

Type Description
NotImplementedError

EntitySchema to Entity Profile transformation is not yet supported. This functionality will be restored when the new Entity Profile architecture is finalized.

Plain meaning: Transform into a GKC Entity Profile (not yet supported).

Source code in gkc/mash/core.py
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
def to_gkc_entity_profile(self) -> dict[str, Any]:
    """Convert to GKC Entity Profile format.

    Returns:
        Dict representing the GKC Entity Profile.

    Raises:
        NotImplementedError: EntitySchema to Entity Profile transformation
            is not yet supported. This functionality will be restored
            when the new Entity Profile architecture is finalized.

    Plain meaning: Transform into a GKC Entity Profile (not yet supported).
    """
    raise NotImplementedError(
        "EntitySchema to GKC Entity Profile transformation is not yet supported. "
        "This functionality will be restored when the new Entity Profile "
        "architecture is finalized."
    )

to_shell()

Strip identifiers and metadata for new EntitySchema creation.

Returns entity data with all system IDs and metadata removed, suitable for use as a template for creating new EntitySchemas.

Returns:

Type Description
dict[str, Any]

Dict with identifiers stripped, ready for new EntitySchema creation.

Plain meaning: Prepare this template as a clean shell for a new EntitySchema.

Source code in gkc/mash/core.py
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
def to_shell(self) -> dict[str, Any]:
    """Strip identifiers and metadata for new EntitySchema creation.

    Returns entity data with all system IDs and metadata removed,
    suitable for use as a template for creating new EntitySchemas.

    Returns:
        Dict with identifiers stripped, ready for new EntitySchema creation.

    Plain meaning: Prepare this template as a clean shell for a new EntitySchema.
    """
    return strip_entity_identifiers(self.entity_data)

WikibaseLoader

Load a Wikidata item as a template for bulk modification.

This is the Wikidata-specific implementation of a data loader. Future loaders for CSV, JSON APIs, etc. should follow a similar pattern.

Plain meaning: Fetch and parse a Wikidata item into a usable template.

Source code in gkc/mash/core.py
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
class WikibaseLoader:
    """Load a Wikidata item as a template for bulk modification.

    This is the Wikidata-specific implementation of a data loader.
    Future loaders for CSV, JSON APIs, etc. should follow a similar pattern.

    Plain meaning: Fetch and parse a Wikidata item into a usable template.
    """

    def __init__(
        self,
        user_agent: Optional[str] = None,
        api_url: str = "https://www.wikidata.org/w/api.php",
        api_client: Optional[WikibaseApiClient] = None,
        auth: Optional[Any] = None,
    ):
        """Initialize the loader.

        Args:
            user_agent: Custom user agent for Wikidata requests.
                       If not provided, a default GKC user agent is used.
            api_client: Optional pre-configured WikibaseApiClient.
            auth: Optional WikiverseAuth instance. When provided and the
                authenticated user has the ``apihighlimits`` right, batch
                requests are made in chunks of 500 instead of 50.
        """

        if user_agent is None:
            user_agent = DEFAULT_USER_AGENT

        self.user_agent = user_agent
        self.api_url = api_url
        self.api_client = api_client or WikibaseApiClient(
            api_url=api_url,
            user_agent=user_agent,
        )
        has_high_limits = (
            auth is not None
            and callable(getattr(auth, "has_api_high_limits", None))
            and auth.has_api_high_limits()
        )
        self.entity_batch_size: int = 500 if has_high_limits else 50

    def load_item(self, qid: str) -> WikibaseItemTemplate:
        """Load a Wikidata item and return it as a template.

        Args:
            qid: The Wikidata item ID (e.g., 'Q42').

        Returns:
            WikibaseItemTemplate with the item's structure.

        Raises:
            RuntimeError: If the item cannot be fetched or parsed.

        Plain meaning: Retrieve the item and return it ready for use.

        Example:
            >>> loader = WikibaseLoader()
            >>> template = loader.load_item("Q42")
            >>> print(template.summary())
        """

        entity_data = self.load_entity_data(qid)

        # Convert to MashTemplate
        template = self._build_template(qid, entity_data)

        return template

    def load(self, qid: str) -> WikibaseItemTemplate:
        """Load a Wikidata item and return it as a template.

        .. deprecated:: 1.0
            Use :meth:`load_item` instead. This method is maintained for
            backwards compatibility and will be removed in a future version.

        Args:
            qid: The Wikidata item ID (e.g., 'Q42').

        Returns:
            WikibaseItemTemplate with the item's structure.

        Plain meaning: Retrieve the item and return it ready for use.
        """
        return self.load_item(qid)

    def load_entities_raw(self, entity_ids: list[str]) -> dict[str, dict[str, Any]]:
        """Load raw entity JSON in wbgetentities-sized batches.

        Uses ``self.entity_batch_size`` so authenticated sessions with
        ``apihighlimits`` can fetch 500 entities per request.
        """
        if not entity_ids:
            return {}

        result: dict[str, dict[str, Any]] = {}

        for i in range(0, len(entity_ids), self.entity_batch_size):
            batch = entity_ids[i : i + self.entity_batch_size]
            batch_results = self._fetch_entities_batch(batch)
            result.update(batch_results)

        return result

    def load_items(self, qids: list[str]) -> dict[str, WikibaseItemTemplate]:
        """Load multiple Wikidata items in batch and return them as templates.

        Uses the wbgetentities API to efficiently fetch multiple items in
        ``self.entity_batch_size`` chunks. Handles partial failures gracefully.

        Args:
            qids: List of Wikidata item IDs (e.g., ['Q42', 'Q5']).

        Returns:
            Dict mapping QIDs to WikidataTemplates. Only successfully loaded
            items are included in the result.

        Raises:
            RuntimeError: If the API request fails completely.

        Plain meaning: Load multiple items efficiently in batch.

        Example:
            >>> loader = WikibaseLoader()
            >>> templates = loader.load_items(["Q42", "Q5", "Q30"])
            >>> print(len(templates))
            3
        """
        if not qids:
            return {}

        result: dict[str, WikibaseItemTemplate] = {}
        batch_results = self.load_entities_raw(qids)

        # Build templates for each successfully fetched entity
        for qid, entity_data in batch_results.items():
            try:
                template = self._build_template(qid, entity_data)
                result[qid] = template
            except Exception:
                # Skip items that fail to parse
                continue

        return result

    def load_property(self, pid: str) -> WikibasePropertyTemplate:
        """Load a Wikidata property and return it as a template.

        Args:
            pid: The Wikidata property ID (e.g., 'P31').

        Returns:
            WikibasePropertyTemplate with the property's metadata.

        Raises:
            RuntimeError: If the property cannot be fetched or parsed.

        Plain meaning: Retrieve a property definition and return it ready for use.

        Example:
            >>> loader = WikibaseLoader()
            >>> prop = loader.load_property("P31")
            >>> print(prop.summary())
        """
        entity_data = self.load_entity_data(pid)
        return self._build_property_template(pid, entity_data)

    def load_entity_schema(self, eid: str) -> WikibaseEntitySchemaTemplate:
        """Load a Wikidata EntitySchema and return it as a template.

        Args:
            eid: The Wikidata EntitySchema ID (e.g., 'E502').

        Returns:
            WikibaseEntitySchemaTemplate with the schema content.

        Raises:
            RuntimeError: If the EntitySchema cannot be fetched or parsed.

        Plain meaning: Retrieve an EntitySchema and return it ready for use.

        Example:
            >>> loader = WikibaseLoader()
            >>> schema = loader.load_entity_schema("E502")
            >>> print(schema.summary())
        """
        entity_data = fetch_entity_schema_json(eid, user_agent=self.user_agent)
        return self._build_entity_schema_template(eid, entity_data)

    def _fetch_entities_batch(self, entity_ids: list[str]) -> dict[str, dict[str, Any]]:
        """Fetch multiple entities using wbgetentities API.

        Args:
            entity_ids: List of entity IDs (max 50).

        Returns:
            Dict mapping entity IDs to their entity data.

        Raises:
            RuntimeError: If the API request fails.

        Plain meaning: Fetch a batch of entities from Wikidata.
        """
        try:
            return self.api_client.get_entities(entity_ids)
        except RuntimeError as exc:
            raise RuntimeError(f"Failed to fetch entities batch: {exc}") from exc

    def load_entity_data(self, qid: str) -> dict[str, Any]:
        """Load raw Wikidata entity data.

        Plain meaning: Return the entity JSON as provided by Wikidata.
        """

        # Fetch the item via Special:EntityData endpoint which returns JSON
        # This is equivalent to wbgetentities but simpler for single-item fetches
        json_text = self._fetch_entity_json(qid)

        # Parse the JSON response from Wikidata
        return self._parse_wikidata_json(json_text, qid)

    def _fetch_entity_json(self, qid: str) -> str:
        """Fetch a single Wikidata entity as JSON.

        Args:
            qid: The Wikidata item ID (e.g., 'Q42').

        Returns:
            JSON string with entity data.

        Raises:
            RuntimeError: If the fetch fails or entity doesn't exist.

        Plain meaning: Download the item from Wikidata as JSON.
        """

        parsed = urlparse(self.api_url)
        if not parsed.scheme or not parsed.netloc:
            raise RuntimeError(f"Invalid API URL configured: {self.api_url}")

        url = f"{parsed.scheme}://{parsed.netloc}/wiki/Special:EntityData/{qid}.json"

        headers = {}
        if self.user_agent:
            headers["User-Agent"] = self.user_agent

        try:
            response = requests.get(url, headers=headers, timeout=30)

            # Handle 404 or 400 errors which indicate item doesn't exist
            if response.status_code == 404:
                raise RuntimeError(f"no-such-entity: {qid} not found on Wikidata")
            if response.status_code == 400:
                raise RuntimeError(f"no-such-entity: {qid} is invalid")

            response.raise_for_status()
            return response.text
        except requests.RequestException as exc:
            raise RuntimeError(f"Failed to load item {qid}: {exc}") from exc

    def _parse_wikidata_json(self, json_text: str, qid: str) -> dict[str, Any]:
        """Parse Wikidata JSON response from Special:EntityData endpoint.

        Args:
            json_text: Raw JSON response text.
            qid: The QID being parsed (used for error messages).

        Returns:
            Dictionary with entity data.

        Raises:
            ValueError: If JSON parsing fails or format is unexpected.

        Plain meaning: Extract entity data from the API response.
        """

        try:
            response = json.loads(json_text)
        except json.JSONDecodeError as exc:
            raise ValueError(f"Failed to parse JSON response for {qid}: {exc}") from exc

        if not isinstance(response, dict):
            raise ValueError(f"Expected JSON object for {qid}, got {type(response)}")

        # Special:EntityData wraps data in an "entities" key
        entities = response.get("entities", {})
        entity_data: dict[str, Any] = entities.get(qid, {})

        # Check for API error
        if "error" in entity_data:
            error_code = entity_data["error"].get("code", "unknown")
            error_info = entity_data["error"].get("info", "No error details")
            raise ValueError(
                f"Wikidata API error for {qid} ({error_code}): {error_info}"
            )

        if not entity_data:
            raise ValueError(f"Entity {qid} not found in response")

        return entity_data

    def _build_template(
        self, qid: str, entity_data: dict[str, Any]
    ) -> WikibaseItemTemplate:
        """Convert entity data to a WikibaseItemTemplate.

        Plain meaning: Transform API data into our simplified format.
        """

        # Extract labels, descriptions, aliases
        labels = entity_data.get("labels", {})
        descriptions = entity_data.get("descriptions", {})
        aliases = entity_data.get("aliases", {})

        # Simplify to language -> value mappings
        labels_dict = {
            lang: item.get("value", "")
            for lang, item in labels.items()
            if isinstance(item, dict)
        }
        descriptions_dict = {
            lang: item.get("value", "")
            for lang, item in descriptions.items()
            if isinstance(item, dict)
        }
        aliases_dict = {
            lang: [alias.get("value", "") for alias in alias_list]
            for lang, alias_list in aliases.items()
            if isinstance(alias_list, list)
        }

        # Extract claims
        claims = self._extract_claims(entity_data.get("claims", {}))

        return WikibaseItemTemplate(
            qid=qid,
            labels=labels_dict,
            descriptions=descriptions_dict,
            aliases=aliases_dict,
            claims=claims,
            entity_data=copy.deepcopy(entity_data),
        )

    @staticmethod
    def _extract_claims(claims_data: dict[str, Any]) -> list[ClaimSummary]:
        """Extract claims from entity data.

        Plain meaning: Parse statement data into simplified claim objects.
        """

        claims: list[ClaimSummary] = []

        for prop_id, statements in claims_data.items():
            if not isinstance(statements, list):
                continue

            for statement in statements:
                claim = WikibaseLoader._statement_to_claim(prop_id, statement)
                if claim:
                    claims.append(claim)

        return claims

    def _build_property_template(
        self, pid: str, entity_data: dict[str, Any]
    ) -> WikibasePropertyTemplate:
        """Convert entity data to a WikibasePropertyTemplate.

        Plain meaning: Transform API data into our simplified property format.
        """
        # Extract labels, descriptions, aliases
        labels = entity_data.get("labels", {})
        descriptions = entity_data.get("descriptions", {})
        aliases = entity_data.get("aliases", {})

        # Simplify to language -> value mappings
        labels_dict = {
            lang: item.get("value", "")
            for lang, item in labels.items()
            if isinstance(item, dict)
        }
        descriptions_dict = {
            lang: item.get("value", "")
            for lang, item in descriptions.items()
            if isinstance(item, dict)
        }
        aliases_dict = {
            lang: [alias.get("value", "") for alias in alias_list]
            for lang, alias_list in aliases.items()
            if isinstance(alias_list, list)
        }

        # Extract property-specific metadata
        datatype = entity_data.get("datatype")

        # Formatter URL is in claims P1630
        formatter_url = None
        claims = entity_data.get("claims", {})
        p1630_statements = claims.get("P1630", [])
        if p1630_statements and isinstance(p1630_statements, list):
            first_statement = p1630_statements[0]
            mainsnak = first_statement.get("mainsnak", {})
            datavalue = mainsnak.get("datavalue", {})
            if datavalue.get("type") == "string":
                formatter_url = datavalue.get("value")

        return WikibasePropertyTemplate(
            pid=pid,
            labels=labels_dict,
            descriptions=descriptions_dict,
            aliases=aliases_dict,
            datatype=datatype,
            formatter_url=formatter_url,
            entity_data=copy.deepcopy(entity_data),
        )

    def _build_entity_schema_template(
        self, eid: str, entity_data: dict[str, Any]
    ) -> WikibaseEntitySchemaTemplate:
        """Convert entity data to a WikibaseEntitySchemaTemplate.

        Plain meaning: Transform API data into our simplified EntitySchema format.
        """
        # Extract labels and descriptions
        labels = entity_data.get("labels", {})
        descriptions = entity_data.get("descriptions", {})

        # Simplify to language -> value mappings
        labels_dict = {
            lang: item.get("value", "")
            for lang, item in labels.items()
            if isinstance(item, dict)
        }
        descriptions_dict = {
            lang: item.get("value", "")
            for lang, item in descriptions.items()
            if isinstance(item, dict)
        }

        # Extract schema text
        schema_text = entity_data.get("schemaText", "")

        return WikibaseEntitySchemaTemplate(
            eid=eid,
            labels=labels_dict,
            descriptions=descriptions_dict,
            schema_text=schema_text,
            entity_data=copy.deepcopy(entity_data),
        )

    @staticmethod
    def _statement_to_claim(
        prop_id: str, statement: dict[str, Any]
    ) -> Optional[ClaimSummary]:
        """Convert a single statement to a ClaimSummary.

        Plain meaning: Simplify a statement object for display.
        """

        # Extract main value
        mainsnak = statement.get("mainsnak", {})
        value, value_metadata = WikibaseLoader._snak_to_value(mainsnak)
        if value is None:
            return None

        # Extract qualifiers with their values
        qualifiers = statement.get("qualifiers", {})
        qualifiers_list = []
        for prop, snaks in qualifiers.items():
            if snaks:
                # Extract value from the first snak of each qualifier property
                snak = snaks[0]
                qual_value, qual_metadata = WikibaseLoader._snak_to_value(snak)
                if qual_value:
                    qualifier_dict = {"property": prop, "value": qual_value}
                    if qual_metadata:
                        qualifier_dict["metadata"] = qual_metadata
                    qualifiers_list.append(qualifier_dict)

        # Extract references
        references = statement.get("references", [])
        references_list = [{"count": len(ref.get("snaks", {}))} for ref in references]

        rank = statement.get("rank", "normal")

        return ClaimSummary(
            property_id=prop_id,
            value=value,
            qualifiers=qualifiers_list,
            references=references_list,
            rank=rank,
            value_metadata=value_metadata,
        )

    @staticmethod
    def _snak_to_value(
        snak: dict[str, Any],
    ) -> tuple[Optional[str], Optional[dict[str, Any]]]:
        """Extract a human-readable value from a snak with metadata.

        Returns:
            Tuple of (value_string, metadata_dict) where metadata contains
            things like precision for dates, units for quantities, etc.

        Plain meaning: Get a simple string representation of the value plus metadata.
        """

        snaktype = snak.get("snaktype", "value")

        if snaktype == "novalue":
            return "[no value]", None
        if snaktype == "somevalue":
            return "[unknown value]", None

        datavalue = snak.get("datavalue")
        if not datavalue:
            return None, None

        dv_type = datavalue.get("type", "")
        dv_value = datavalue.get("value")

        if dv_type == "wikibase-entityid":
            if isinstance(dv_value, dict):
                return dv_value.get("id", "[entity]"), None
            return str(dv_value), None

        if dv_type == "quantity":
            if isinstance(dv_value, dict):
                amount = dv_value.get("amount", "[quantity]")
                unit = dv_value.get("unit")
                metadata = {"unit": unit} if unit else None
                return amount, metadata
            return str(dv_value), None

        if dv_type == "time":
            if isinstance(dv_value, dict):
                time_str = dv_value.get("time", "[time]")
                precision = dv_value.get("precision")
                metadata = {"precision": precision} if precision is not None else None
                return time_str, metadata
            return str(dv_value), None

        if dv_type == "monolingualtext":
            if isinstance(dv_value, dict):
                return dv_value.get("text", "[text]"), None
            return str(dv_value), None

        if dv_type == "string":
            return str(dv_value), None

        if dv_type == "globecoordinate":
            if isinstance(dv_value, dict):
                lat = dv_value.get("latitude", "?")
                lon = dv_value.get("longitude", "?")
                precision_val = dv_value.get("precision")
                metadata = (
                    {"precision": precision_val} if precision_val is not None else None
                )
                return f"({lat}, {lon})", metadata
            return str(dv_value), None

        return (str(dv_value), None) if dv_value else (None, None)

__init__(user_agent=None, api_url='https://www.wikidata.org/w/api.php', api_client=None, auth=None)

Initialize the loader.

Parameters:

Name Type Description Default
user_agent Optional[str]

Custom user agent for Wikidata requests. If not provided, a default GKC user agent is used.

None
api_client Optional[WikibaseApiClient]

Optional pre-configured WikibaseApiClient.

None
auth Optional[Any]

Optional WikiverseAuth instance. When provided and the authenticated user has the apihighlimits right, batch requests are made in chunks of 500 instead of 50.

None
Source code in gkc/mash/core.py
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
def __init__(
    self,
    user_agent: Optional[str] = None,
    api_url: str = "https://www.wikidata.org/w/api.php",
    api_client: Optional[WikibaseApiClient] = None,
    auth: Optional[Any] = None,
):
    """Initialize the loader.

    Args:
        user_agent: Custom user agent for Wikidata requests.
                   If not provided, a default GKC user agent is used.
        api_client: Optional pre-configured WikibaseApiClient.
        auth: Optional WikiverseAuth instance. When provided and the
            authenticated user has the ``apihighlimits`` right, batch
            requests are made in chunks of 500 instead of 50.
    """

    if user_agent is None:
        user_agent = DEFAULT_USER_AGENT

    self.user_agent = user_agent
    self.api_url = api_url
    self.api_client = api_client or WikibaseApiClient(
        api_url=api_url,
        user_agent=user_agent,
    )
    has_high_limits = (
        auth is not None
        and callable(getattr(auth, "has_api_high_limits", None))
        and auth.has_api_high_limits()
    )
    self.entity_batch_size: int = 500 if has_high_limits else 50

load(qid)

Load a Wikidata item and return it as a template.

.. deprecated:: 1.0 Use :meth:load_item instead. This method is maintained for backwards compatibility and will be removed in a future version.

Parameters:

Name Type Description Default
qid str

The Wikidata item ID (e.g., 'Q42').

required

Returns:

Type Description
WikibaseItemTemplate

WikibaseItemTemplate with the item's structure.

Plain meaning: Retrieve the item and return it ready for use.

Source code in gkc/mash/core.py
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
def load(self, qid: str) -> WikibaseItemTemplate:
    """Load a Wikidata item and return it as a template.

    .. deprecated:: 1.0
        Use :meth:`load_item` instead. This method is maintained for
        backwards compatibility and will be removed in a future version.

    Args:
        qid: The Wikidata item ID (e.g., 'Q42').

    Returns:
        WikibaseItemTemplate with the item's structure.

    Plain meaning: Retrieve the item and return it ready for use.
    """
    return self.load_item(qid)

load_entities_raw(entity_ids)

Load raw entity JSON in wbgetentities-sized batches.

Uses self.entity_batch_size so authenticated sessions with apihighlimits can fetch 500 entities per request.

Source code in gkc/mash/core.py
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
def load_entities_raw(self, entity_ids: list[str]) -> dict[str, dict[str, Any]]:
    """Load raw entity JSON in wbgetentities-sized batches.

    Uses ``self.entity_batch_size`` so authenticated sessions with
    ``apihighlimits`` can fetch 500 entities per request.
    """
    if not entity_ids:
        return {}

    result: dict[str, dict[str, Any]] = {}

    for i in range(0, len(entity_ids), self.entity_batch_size):
        batch = entity_ids[i : i + self.entity_batch_size]
        batch_results = self._fetch_entities_batch(batch)
        result.update(batch_results)

    return result

load_entity_data(qid)

Load raw Wikidata entity data.

Plain meaning: Return the entity JSON as provided by Wikidata.

Source code in gkc/mash/core.py
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
def load_entity_data(self, qid: str) -> dict[str, Any]:
    """Load raw Wikidata entity data.

    Plain meaning: Return the entity JSON as provided by Wikidata.
    """

    # Fetch the item via Special:EntityData endpoint which returns JSON
    # This is equivalent to wbgetentities but simpler for single-item fetches
    json_text = self._fetch_entity_json(qid)

    # Parse the JSON response from Wikidata
    return self._parse_wikidata_json(json_text, qid)

load_entity_schema(eid)

Load a Wikidata EntitySchema and return it as a template.

Parameters:

Name Type Description Default
eid str

The Wikidata EntitySchema ID (e.g., 'E502').

required

Returns:

Type Description
WikibaseEntitySchemaTemplate

WikibaseEntitySchemaTemplate with the schema content.

Raises:

Type Description
RuntimeError

If the EntitySchema cannot be fetched or parsed.

Plain meaning: Retrieve an EntitySchema and return it ready for use.

Example

loader = WikibaseLoader() schema = loader.load_entity_schema("E502") print(schema.summary())

Source code in gkc/mash/core.py
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
def load_entity_schema(self, eid: str) -> WikibaseEntitySchemaTemplate:
    """Load a Wikidata EntitySchema and return it as a template.

    Args:
        eid: The Wikidata EntitySchema ID (e.g., 'E502').

    Returns:
        WikibaseEntitySchemaTemplate with the schema content.

    Raises:
        RuntimeError: If the EntitySchema cannot be fetched or parsed.

    Plain meaning: Retrieve an EntitySchema and return it ready for use.

    Example:
        >>> loader = WikibaseLoader()
        >>> schema = loader.load_entity_schema("E502")
        >>> print(schema.summary())
    """
    entity_data = fetch_entity_schema_json(eid, user_agent=self.user_agent)
    return self._build_entity_schema_template(eid, entity_data)

load_item(qid)

Load a Wikidata item and return it as a template.

Parameters:

Name Type Description Default
qid str

The Wikidata item ID (e.g., 'Q42').

required

Returns:

Type Description
WikibaseItemTemplate

WikibaseItemTemplate with the item's structure.

Raises:

Type Description
RuntimeError

If the item cannot be fetched or parsed.

Plain meaning: Retrieve the item and return it ready for use.

Example

loader = WikibaseLoader() template = loader.load_item("Q42") print(template.summary())

Source code in gkc/mash/core.py
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
def load_item(self, qid: str) -> WikibaseItemTemplate:
    """Load a Wikidata item and return it as a template.

    Args:
        qid: The Wikidata item ID (e.g., 'Q42').

    Returns:
        WikibaseItemTemplate with the item's structure.

    Raises:
        RuntimeError: If the item cannot be fetched or parsed.

    Plain meaning: Retrieve the item and return it ready for use.

    Example:
        >>> loader = WikibaseLoader()
        >>> template = loader.load_item("Q42")
        >>> print(template.summary())
    """

    entity_data = self.load_entity_data(qid)

    # Convert to MashTemplate
    template = self._build_template(qid, entity_data)

    return template

load_items(qids)

Load multiple Wikidata items in batch and return them as templates.

Uses the wbgetentities API to efficiently fetch multiple items in self.entity_batch_size chunks. Handles partial failures gracefully.

Parameters:

Name Type Description Default
qids list[str]

List of Wikidata item IDs (e.g., ['Q42', 'Q5']).

required

Returns:

Type Description
dict[str, WikibaseItemTemplate]

Dict mapping QIDs to WikidataTemplates. Only successfully loaded

dict[str, WikibaseItemTemplate]

items are included in the result.

Raises:

Type Description
RuntimeError

If the API request fails completely.

Plain meaning: Load multiple items efficiently in batch.

Example

loader = WikibaseLoader() templates = loader.load_items(["Q42", "Q5", "Q30"]) print(len(templates)) 3

Source code in gkc/mash/core.py
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
def load_items(self, qids: list[str]) -> dict[str, WikibaseItemTemplate]:
    """Load multiple Wikidata items in batch and return them as templates.

    Uses the wbgetentities API to efficiently fetch multiple items in
    ``self.entity_batch_size`` chunks. Handles partial failures gracefully.

    Args:
        qids: List of Wikidata item IDs (e.g., ['Q42', 'Q5']).

    Returns:
        Dict mapping QIDs to WikidataTemplates. Only successfully loaded
        items are included in the result.

    Raises:
        RuntimeError: If the API request fails completely.

    Plain meaning: Load multiple items efficiently in batch.

    Example:
        >>> loader = WikibaseLoader()
        >>> templates = loader.load_items(["Q42", "Q5", "Q30"])
        >>> print(len(templates))
        3
    """
    if not qids:
        return {}

    result: dict[str, WikibaseItemTemplate] = {}
    batch_results = self.load_entities_raw(qids)

    # Build templates for each successfully fetched entity
    for qid, entity_data in batch_results.items():
        try:
            template = self._build_template(qid, entity_data)
            result[qid] = template
        except Exception:
            # Skip items that fail to parse
            continue

    return result

load_property(pid)

Load a Wikidata property and return it as a template.

Parameters:

Name Type Description Default
pid str

The Wikidata property ID (e.g., 'P31').

required

Returns:

Type Description
WikibasePropertyTemplate

WikibasePropertyTemplate with the property's metadata.

Raises:

Type Description
RuntimeError

If the property cannot be fetched or parsed.

Plain meaning: Retrieve a property definition and return it ready for use.

Example

loader = WikibaseLoader() prop = loader.load_property("P31") print(prop.summary())

Source code in gkc/mash/core.py
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
def load_property(self, pid: str) -> WikibasePropertyTemplate:
    """Load a Wikidata property and return it as a template.

    Args:
        pid: The Wikidata property ID (e.g., 'P31').

    Returns:
        WikibasePropertyTemplate with the property's metadata.

    Raises:
        RuntimeError: If the property cannot be fetched or parsed.

    Plain meaning: Retrieve a property definition and return it ready for use.

    Example:
        >>> loader = WikibaseLoader()
        >>> prop = loader.load_property("P31")
        >>> print(prop.summary())
    """
    entity_data = self.load_entity_data(pid)
    return self._build_property_template(pid, entity_data)

WikipediaTemplate

A Wikipedia template loaded from Wikimedia API for use in Wikipedia editing.

This is the Wikipedia-specific implementation of the DataTemplate protocol.

Plain meaning: A loaded Wikipedia template ready for display and use in editing workflows.

Source code in gkc/mash/core.py
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
@dataclass
class WikipediaTemplate:
    """A Wikipedia template loaded from Wikimedia API for use in Wikipedia editing.

    This is the Wikipedia-specific implementation of the DataTemplate protocol.

    Plain meaning: A loaded Wikipedia template ready for display and use
    in editing workflows.
    """

    title: str
    description: str
    params: dict[str, Any]
    param_order: list[str]
    raw_data: dict[str, Any]

    def summary(self) -> dict[str, Any]:
        """Return a summary of the template for display.

        Returns:
            Dict with title, description, and number of parameters.

        Plain meaning: Get a quick overview without full details.
        """
        return {
            "title": self.title,
            "description": self.description,
            "param_count": len(self.params),
        }

    def to_dict(self) -> dict[str, Any]:
        """Serialize to a dictionary.

        Returns:
            Dict containing title, description, params, and paramOrder.

        Plain meaning: Convert to a form suitable for JSON export.
        """
        return {
            "title": self.title,
            "description": self.description,
            "params": self.params,
            "paramOrder": self.param_order,
        }

summary()

Return a summary of the template for display.

Returns:

Type Description
dict[str, Any]

Dict with title, description, and number of parameters.

Plain meaning: Get a quick overview without full details.

Source code in gkc/mash/core.py
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
def summary(self) -> dict[str, Any]:
    """Return a summary of the template for display.

    Returns:
        Dict with title, description, and number of parameters.

    Plain meaning: Get a quick overview without full details.
    """
    return {
        "title": self.title,
        "description": self.description,
        "param_count": len(self.params),
    }

to_dict()

Serialize to a dictionary.

Returns:

Type Description
dict[str, Any]

Dict containing title, description, params, and paramOrder.

Plain meaning: Convert to a form suitable for JSON export.

Source code in gkc/mash/core.py
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
def to_dict(self) -> dict[str, Any]:
    """Serialize to a dictionary.

    Returns:
        Dict containing title, description, params, and paramOrder.

    Plain meaning: Convert to a form suitable for JSON export.
    """
    return {
        "title": self.title,
        "description": self.description,
        "params": self.params,
        "paramOrder": self.param_order,
    }

WikipediaLoader

Load Wikipedia templates from Wikimedia API as templates for editing workflows.

This is the Wikipedia-specific implementation of a data loader.

Plain meaning: Fetch and parse a Wikipedia template into a usable format.

Source code in gkc/mash/core.py
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
class WikipediaLoader:
    """Load Wikipedia templates from Wikimedia API as templates for editing workflows.

    This is the Wikipedia-specific implementation of a data loader.

    Plain meaning: Fetch and parse a Wikipedia template into a usable format.
    """

    def __init__(self, user_agent: Optional[str] = None):
        """Initialize the loader.

        Args:
            user_agent: Custom user agent for Wikimedia API requests.
                       If not provided, a default GKC user agent is used.

        Plain meaning: Set up the loader with optional custom user agent.
        """
        if user_agent is None:
            user_agent = DEFAULT_USER_AGENT

        self.user_agent = user_agent
        self.base_url = "https://en.wikipedia.org/w/api.php"

    def load_template(self, template_name: str) -> WikipediaTemplate:
        """Load a Wikipedia template and return it as a template.

        Args:
            template_name: The Wikipedia template name (e.g., 'Infobox settlement').

        Returns:
            WikipediaTemplate with the template's structure.

        Raises:
            RuntimeError: If the template cannot be fetched or parsed.

        Plain meaning: Retrieve the template and return it ready for use.

        Example:
            >>> loader = WikipediaLoader()
            >>> template = loader.load_template("Infobox settlement")
            >>> print(template.summary())
        """
        # Fetch template data from Wikimedia API
        params: dict[str, Any] = {
            "action": "templatedata",
            "format": "json",
            "titles": f"Template:{template_name}",
        }

        try:
            response = requests.get(
                self.base_url,
                params=params,
                headers={"User-Agent": self.user_agent},
                timeout=10,
            )
            response.raise_for_status()
        except requests.RequestException as exc:
            raise RuntimeError(
                f"Failed to fetch template '{template_name}' from Wikimedia API: {exc}"
            ) from exc

        try:
            data = response.json()
        except ValueError as exc:
            raise RuntimeError(
                f"Failed to parse JSON response for template '{template_name}': {exc}"
            ) from exc

        # Extract pages from response. The templatedata API returns pages directly,
        # not nested under a "query" key like other Mediawiki APIs.
        pages = data.get("pages", {})
        if not pages:
            raise RuntimeError(
                f"Template '{template_name}' not found in Wikimedia API response"
            )

        # Get the first (and only) page
        page_data = next(iter(pages.values()))

        # Check if this page has template data
        if "notabledescriptions" in page_data or "missing" in page_data:
            raise RuntimeError(
                f"Template '{template_name}' not found or has no template data"
            )

        # Extract required fields
        title = page_data.get("title", template_name)

        # Get description in English, or empty string if not available
        descriptions = page_data.get("description", {})
        if isinstance(descriptions, dict):
            description = descriptions.get("en", "")
        else:
            description = str(descriptions) if descriptions else ""

        params_data = page_data.get("params", {})
        param_order = page_data.get("paramOrder", [])

        # Build and return the template
        return WikipediaTemplate(
            title=title,
            description=description,
            params=params_data,
            param_order=param_order,
            raw_data=page_data,
        )

__init__(user_agent=None)

Initialize the loader.

Parameters:

Name Type Description Default
user_agent Optional[str]

Custom user agent for Wikimedia API requests. If not provided, a default GKC user agent is used.

None

Plain meaning: Set up the loader with optional custom user agent.

Source code in gkc/mash/core.py
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
def __init__(self, user_agent: Optional[str] = None):
    """Initialize the loader.

    Args:
        user_agent: Custom user agent for Wikimedia API requests.
                   If not provided, a default GKC user agent is used.

    Plain meaning: Set up the loader with optional custom user agent.
    """
    if user_agent is None:
        user_agent = DEFAULT_USER_AGENT

    self.user_agent = user_agent
    self.base_url = "https://en.wikipedia.org/w/api.php"

load_template(template_name)

Load a Wikipedia template and return it as a template.

Parameters:

Name Type Description Default
template_name str

The Wikipedia template name (e.g., 'Infobox settlement').

required

Returns:

Type Description
WikipediaTemplate

WikipediaTemplate with the template's structure.

Raises:

Type Description
RuntimeError

If the template cannot be fetched or parsed.

Plain meaning: Retrieve the template and return it ready for use.

Example

loader = WikipediaLoader() template = loader.load_template("Infobox settlement") print(template.summary())

Source code in gkc/mash/core.py
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
def load_template(self, template_name: str) -> WikipediaTemplate:
    """Load a Wikipedia template and return it as a template.

    Args:
        template_name: The Wikipedia template name (e.g., 'Infobox settlement').

    Returns:
        WikipediaTemplate with the template's structure.

    Raises:
        RuntimeError: If the template cannot be fetched or parsed.

    Plain meaning: Retrieve the template and return it ready for use.

    Example:
        >>> loader = WikipediaLoader()
        >>> template = loader.load_template("Infobox settlement")
        >>> print(template.summary())
    """
    # Fetch template data from Wikimedia API
    params: dict[str, Any] = {
        "action": "templatedata",
        "format": "json",
        "titles": f"Template:{template_name}",
    }

    try:
        response = requests.get(
            self.base_url,
            params=params,
            headers={"User-Agent": self.user_agent},
            timeout=10,
        )
        response.raise_for_status()
    except requests.RequestException as exc:
        raise RuntimeError(
            f"Failed to fetch template '{template_name}' from Wikimedia API: {exc}"
        ) from exc

    try:
        data = response.json()
    except ValueError as exc:
        raise RuntimeError(
            f"Failed to parse JSON response for template '{template_name}': {exc}"
        ) from exc

    # Extract pages from response. The templatedata API returns pages directly,
    # not nested under a "query" key like other Mediawiki APIs.
    pages = data.get("pages", {})
    if not pages:
        raise RuntimeError(
            f"Template '{template_name}' not found in Wikimedia API response"
        )

    # Get the first (and only) page
    page_data = next(iter(pages.values()))

    # Check if this page has template data
    if "notabledescriptions" in page_data or "missing" in page_data:
        raise RuntimeError(
            f"Template '{template_name}' not found or has no template data"
        )

    # Extract required fields
    title = page_data.get("title", template_name)

    # Get description in English, or empty string if not available
    descriptions = page_data.get("description", {})
    if isinstance(descriptions, dict):
        description = descriptions.get("en", "")
    else:
        description = str(descriptions) if descriptions else ""

    params_data = page_data.get("params", {})
    param_order = page_data.get("paramOrder", [])

    # Build and return the template
    return WikipediaTemplate(
        title=title,
        description=description,
        params=params_data,
        param_order=param_order,
        raw_data=page_data,
    )

See Also