Difference between revisions of "Module:CountryData/cacheZ"
MyWikiBiz, Author Your Legacy — Monday November 03, 2025
Jump to navigationJump to search (Pywikibot 6.4.0) |
(No difference)
|
Latest revision as of 21:13, 15 July 2021
Documentation for this module may be created at Module:CountryData/cacheZ/doc
local CountryData = require('Module:CountryData')
local pages = {'British_Empire', 'British_Raj', 'Castile_and_León', 'Hawaii', 'Kingdom_of_France', 'Louisiana', 'Nevada', 'New_Hampshire', 'Oregon', 'South_Vietnam', 'Swaziland', 'Tennessee'}
local p = {
data = {}
}
local frame = mw.getCurrentFrame()
for _,v in ipairs(pages) do
p.data[v] = CountryData.gettable(frame, v, {})
end
return p