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
MashSourceAdapterplugin 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, andsitelinks - 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 | |
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 |
required |
target_entity_type
|
str
|
Target payload kind, either |
'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 |
dict[str, Any]
|
|
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 | |
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, |
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 | |
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 | |
extract_first_sparql_block()
Return the first SPARQL block from wikitext.
Raises:
| Type | Description |
|---|---|
RuntimeError
|
If no |
Source code in gkc/mash/core.py
544 545 546 547 548 549 550 551 552 553 | |
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 | |
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 | |
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 | |
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 | |
can_load(source_ref)
Return True when this adapter can load the provided source reference.
Source code in gkc/mash/protocols.py
24 25 | |
load(source_ref)
Load one source reference into a template.
Source code in gkc/mash/protocols.py
27 28 | |
load_many(source_refs)
Load multiple source references into templates keyed by source ref.
Source code in gkc/mash/protocols.py
30 31 | |
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 | |
can_load(source_ref)
Return True for Wikibase entity IDs (Q/P/E).
Source code in gkc/mash/core.py
2629 2630 2631 | |
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 | |
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 | |
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 | |
can_load(source_ref)
Return True for non-empty template references.
Source code in gkc/mash/core.py
2692 2693 2694 | |
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 | |
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 | |
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 | |
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 | |
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 |
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 | |
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 |
required |
target_entity_type
|
str
|
Target payload kind, either |
'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 |
dict[str, Any]
|
|
Raises:
| Type | Description |
|---|---|
ValueError
|
If |
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 | |
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 | |
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 | |
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 | |
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 | |
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 | |
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 | |
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 | |
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 | |
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 | |
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 | |
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 | |
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 | |
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 | |
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 | |
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 | |
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 | |
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 | |
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 | |
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 | |
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 | |
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 | |
__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 |
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 | |
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 | |
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 | |
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 | |
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 | |
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 | |
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 | |
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 | |
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 | |
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 | |
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 | |
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 | |
__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 | |
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 | |