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.getFunction

Interface

get(url::String) -> ::String


Quick binding for an HTTP GET request.

example

body = get("/")
    "hi"
Toolips.postFunction

Interface

post(url::String, body::String) -> ::String


Quick binding for an HTTP POST request.

example

response = post("/")
    "my response"