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 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 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)
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
39 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 | |
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
170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 | |
extract_sparql_blocks()
Extract SPARQL blocks from wikitext in source order.
Source code in gkc/mash/core.py
226 227 228 229 230 231 232 233 | |
extract_first_sparql_block()
Return the first SPARQL block from wikitext.
Raises:
| Type | Description |
|---|---|
RuntimeError
|
If no |
Source code in gkc/mash/core.py
236 237 238 239 240 241 242 243 244 245 | |
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
546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 | |
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
562 563 564 565 566 567 | |
to_dict()
Serialize to a dictionary.
Plain meaning: Return the original entity JSON for round-trip safety.
Source code in gkc/mash/core.py
569 570 571 572 573 574 | |
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
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 | |
can_load(source_ref)
Return True for Wikibase entity IDs (Q/P/E).
Source code in gkc/mash/core.py
1959 1960 1961 | |
load(source_ref)
Load a Wikibase entity ID into the appropriate template type.
Source code in gkc/mash/core.py
1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 | |
load_many(source_refs)
Load multiple Wikibase references into templates keyed by source ref.
Source code in gkc/mash/core.py
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 | |
WikipediaMashSourceAdapter
Bases: MashSourceAdapter
Mash source adapter for Wikipedia template references.
Source code in gkc/mash/core.py
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 | |
can_load(source_ref)
Return True for non-empty template references.
Source code in gkc/mash/core.py
2022 2023 2024 | |
load(source_ref)
Load a Wikipedia template by name.
Source code in gkc/mash/core.py
2026 2027 2028 2029 2030 2031 2032 2033 2034 | |
load_many(source_refs)
Load multiple Wikipedia templates keyed by the original source ref.
Source code in gkc/mash/core.py
2036 2037 2038 2039 2040 2041 | |
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
577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 | |
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
606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 | |
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
668 669 670 671 672 673 674 675 676 677 678 679 680 | |
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
683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 | |
filter_qualifiers()
Remove all qualifiers from claims in-place.
Plain meaning: Strip qualifier detail from claims.
Source code in gkc/mash/core.py
699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 | |
filter_references()
Remove all references from claims in-place.
Plain meaning: Strip reference detail from claims.
Source code in gkc/mash/core.py
718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 | |
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
736 737 738 739 740 741 742 743 744 745 746 747 748 | |
to_dict()
Serialize to a dictionary.
Plain meaning: Convert to a form suitable for JSON export.
Source code in gkc/mash/core.py
750 751 752 753 754 755 756 | |
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
814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 | |
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
794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 | |
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
781 782 783 784 785 786 787 788 789 790 791 792 | |
to_simple_dict()
Serialize to a simplified dictionary.
Plain meaning: Convert to a compact summary structure.
Source code in gkc/mash/core.py
758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 | |
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
831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 | |
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
848 849 850 851 852 853 854 855 856 857 858 859 860 | |
to_dict()
Serialize to a dictionary.
Plain meaning: Convert to a form suitable for JSON export.
Source code in gkc/mash/core.py
862 863 864 865 866 867 | |
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
882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 | |
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
869 870 871 872 873 874 875 876 877 878 879 880 | |
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
901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 | |
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
916 917 918 919 920 921 922 923 924 925 926 | |
to_dict()
Serialize to a dictionary.
Plain meaning: Convert to a form suitable for JSON export.
Source code in gkc/mash/core.py
928 929 930 931 932 933 | |
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
948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 | |
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
935 936 937 938 939 940 941 942 943 944 945 946 | |
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
1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 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 1269 1270 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 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 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 1499 1500 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 1569 1570 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 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 | |
__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
1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 | |
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
1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 | |
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
1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 | |
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
1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 | |
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
1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 | |
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
1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 | |
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
1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 | |
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
1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 | |
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
1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 | |
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
1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 | |
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
1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 | |
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
1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 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 | |
__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
1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 | |
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
1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 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 | |