A RFC-3986 URI Library for parsing and building URIs
Find a file
2016-01-21 23:04:34 -05:00
bin Move to rebar3 2016-01-09 12:33:29 -05:00
doc Implement the initial API 2016-01-21 23:04:34 -05:00
include Implement the initial API 2016-01-21 23:04:34 -05:00
src Implement the initial API 2016-01-21 23:04:34 -05:00
test Implement the initial API 2016-01-21 23:04:34 -05:00
.editorconfig Implement the initial API 2016-01-21 23:04:34 -05:00
.gitignore Implement the initial API 2016-01-21 23:04:34 -05:00
.travis.yml <17.5 doesnt work 2016-01-09 14:48:59 -05:00
LICENSE urllib -> urilib 2016-01-08 22:00:05 -05:00
README.md Implement the initial API 2016-01-21 23:04:34 -05:00
rebar.config Implement the initial API 2016-01-21 23:04:34 -05:00

urilib

RFC-3986 URI Library for Erlang.

Build Status codecov.io

Example Usage

-include_lib("urilib.h").

URI = urilib:parse("http://foo:bar@www.google.com/search?baz=qux#corgie"),
io:format("Parsed URI: ~p~n", [URI]).

URL = urllib:build({http, undefined, undefined, "www.google.com", undefined, "/search", [{"foo", "bar"}], "baz"}),
io:format("Built URL: ~s~n", [URL]).