The get and post methods from toolips are quick bindings that can make requests on the fly.
data = get("https://ems.computer")
postdata = post("https://ems.computer", "hello")Base.get — FunctionInterface
get(url::String) -> ::String
Quick binding for an HTTP GET request.
example
body = get("/")
"hi"Toolips.post — FunctionInterface
post(url::String, body::String) -> ::String
Quick binding for an HTTP POST request.
example
response = post("/")
"my response"