The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

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