0cguboss
Customer
- Регистрация
- 7 Июн 2025
- Сообщения
- 17
- Тема Автор
- #1
0cguboss submitted a new item:
OOP Lightweight Network library - Network
Read more...
OOP Lightweight Network library - Network
local Network = require("network")
local net = Network.new("MyLuaAgent/1.0", 15000) -- user agent and timeout in ms
-- Simple HTTP GET
local body, err = net:http_get("https://httpbin.org/get")
print(body or "Error: " .. err)
-- Get headers
local headers = net:http_headers("https://httpbin.org/get")
print(headers)
-- Download file
local ok, err = net:download("test.txt", "https://example.com/file.txt")
print(ok and "Download successful!" or ("Failed: " ...
Read more...