The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

URI::Builder - Tiny URL builder

SYNOPSIS

use URI::Builder;

say build_uri(
    base_uri => 'http://api.example.com/',
    path => '/v1/entries',
    query => [
        id => 3
    ]
);
# http://api.example.com/v1/entries?id=3

DESCRIPTION

URI::Builder is really simple URI string building library.

FUNCTIONS

LICENSE

Copyright (C) Tokuhiro Matsuno.

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

AUTHOR

Tokuhiro Matsuno tokuhirom@gmail.com