Jump to content

Module:TestModule

From NewsWikiTestbed
Revision as of 10:19, 10 June 2025 by AdamZachar (talk | contribs)

local p = {} --p stands for package

function p.hello( frame )
    return "Hello, world!"
end

function p.externalDataTest( frame )
    local data, errors = mw.ext.externaldata.getWebData {
    url = 'https://discoursedb.org/wiki/Special:GetData/Fruits_data'
  , data = {name = 'Name', color = 'Color', shape = 'Shape'}
  , format = 'CSV with header'
    }
    return data[1].name
end

return p