Module:SPARQL

From TITAF TANGOWIKI
Revision as of 22:35, 21 March 2025 by Donxello (talk | contribs)

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

local http = require("socket.http")

local function fetch_url(url)
    local body, code, headers = http.request(url)
    return body
end

return fetch_url("https://www.example.com")