OC-PsychOS/modules/lib/wget.lua

14 lines
217 B
Lua

function wget(url)
local R=component.internet.request(url)
repeat
coroutine.yield()
until R.finishConnect()
S=""
repeat
coroutine.yield()
ns = R.read(2048)
S = S .. (ns or "")
until not ns
return S
end