Module:CountryData/cacheX

This is the current revision of this page, as edited by imported>GKFX at 21:09, 5 May 2021 (Re-arrange cache data by popularity). The present address (URL) is a permanent link to this version.

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
local CountryData = require('Module:CountryData')
local pages = {'Arizona', 'Europe', 'Guadeloupe', 'Guernsey', 'Montana', 'Montserrat', 'Netherlands_Antilles', 'Northern_Mariana_Islands', 'Ottoman_Empire', 'Prussia', 'Washington,_D.C.', 'West_Indies'}
local p = {
    data = {}
}
local frame = mw.getCurrentFrame()

for _,v in ipairs(pages) do
    p.data[v] = CountryData.gettable(frame, v, {})
end

return p