Module:CountryData/cacheT

From English Wikipedia @ Freddythechick

This is the current revision of this page, as edited by imported>GKFX at 21:08, 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 = {'Alberta', 'Aruba', 'Comoros', 'Curaçao', 'Dominica', 'FR_Yugoslavia', 'Kingdom_of_Italy', 'Minnesota', 'Ontario', 'Saskatchewan', 'United_Kingdom_of_Great_Britain_and_Ireland', 'Washington_(state)'}
local p = {
    data = {}
}
local frame = mw.getCurrentFrame()

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

return p