Module:CountryData/cacheI

From KYNNpedia
Revision as of 18:00, 1 February 2024 by imported>MusikBot II (Changed protection settings for "Module:CountryData/cacheI": High-risk template or module: 10696 transclusions (more info) ([Edit=Require template editor access] (indefinite) [Move=Require template editor access] (indefinite)))
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Documentation for this module may be created at Module:CountryData/cacheI/doc

local CountryData = require('Module:CountryData')
local pages = {'Bangladesh', 'Cameroon', 'Costa_Rica', 'Ivory_Coast', 'Malta', 'Moldova', 'Nepal', 'North_Macedonia', 'Panama', 'Qatar', 'Senegal', 'Zimbabwe'}
local p = {
    data = {}
}
local frame = mw.getCurrentFrame()

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

return p