Module:CountryData/cacheS

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 = {'Cayman_Islands', 'Central_African_Republic', 'Djibouti', 'East_Timor', 'Guinea-Bissau', 'Kingdom_of_Great_Britain', 'Michigan', 'New_Jersey', 'Quebec', 'Russian_Empire', 'Saint_Kitts_and_Nevis', 'Solomon_Islands'}
local p = {
    data = {}
}
local frame = mw.getCurrentFrame()

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

return p