View Source CurlEx (curl_ex v1.0.0)

A very simple Elixir wrapper for the curl command line tool. Currently supports only GET requests with no options. Just make sure you have the curl command line tool installed on your system.

Example

iex(1)> CurlEx.get!("https://google.com")
"<html>...</html>"

Summary

Functions

Get the contents of a URL using curl.

Functions

@spec get!(binary()) :: binary()

Get the contents of a URL using curl.