Module:CountryData/cacheK

MyWikiBiz, Author Your Legacy — Friday September 20, 2024
< Module:CountryData
Revision as of 21:12, 15 July 2021 by Zoran (talk | contribs) (Pywikibot 6.4.0)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

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

local CountryData = require('Module:CountryData')
local pages = {'Afghanistan', 'Angola', 'Bahrain', 'Democratic_Republic_of_the_Congo', 'East_Germany', 'Fiji', 'Honduras', 'Jordan', 'Kuwait', 'Mali', 'Taiwan', 'Tanzania'}
local p = {
    data = {}
}
local frame = mw.getCurrentFrame()

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

return p