Module:CountryData/cacheQ

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 = {'Belize', 'Burundi', 'Chad', 'Colorado', 'Faroe_Islands', 'German_Empire', 'Malawi', 'Mauritania', 'Niger', 'Ohio', 'Saint_Lucia', 'Serbia_and_Montenegro'}
local p = {
    data = {}
}
local frame = mw.getCurrentFrame()

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

return p