use November::URI;
my $u = November::URI.new;
$u.init('http://example.com/foo/bar?tag=woow#bla');
my $scheme = $u.scheme;
my $authority = $u.authority;
my $host = $u.host;
my $port = $u.port;
my $path = $u.path;
my $query = $u.query;
my $frag = $u.frag; # or $u.fragment;
my $is_absolute = $u.absolute;
my $is_relative = $u.relative;