-
-
10 Mar 2017 13:29:46 UTC
- Distribution: HTTP-Tiny-Mech
- Module version: 1.001002
- Source (raw)
- Browse (raw)
- Changes
- Homepage
- How to Contribute
- Repository
- Issues (1)
- Testers (1887 / 0 / 0)
- Kwalitee
Bus factor: 0- 100.00% Coverage
- License: perl_5
- Perl: v5.6.0
- Activity
24 month- Tools
- Download (27.77KB)
- MetaCPAN Explorer
- Permissions
- Subscribe to distribution
- Permalinks
- This version
- Latest version
Why not adopt me?
This distribution is up for adoption! If you're interested then please contact the PAUSE module admins via email.NAME
HTTP::Tiny::Mech - Wrap a WWW::Mechanize instance in an HTTP::Tiny compatible interface.
VERSION
version 1.001002
SYNOPSIS
# Get something that expects an HTTP::Tiny instance # to work with HTTP::Mechanize under the hood. # my $thing => ThingThatExpectsHTTPTiny->new( ua => HTTP::Tiny::Mech->new() ); # Get something that expects HTTP::Tiny # to work via WWW::Mechanize::Cached # my $thing => ThingThatExpectsHTTPTiny->new( ua => HTTP::Tiny::Mech->new( mechua => WWW::Mechanize::Cached->new( ) ); );
DESCRIPTION
This code is somewhat poorly documented, and highly experimental.
Its the result of a quick bit of hacking to get
MetaCPAN::API
working faster via theWWW::Mechanize::Cached
module ( and gaining cache persistence viaCHI
)It works so far for this purpose.
At present, only "get" and "request" are implemented, and all other calls fall through to a native
HTTP::Tiny
.ATTRIBUTES
mechua
This class provides one non-standard parameter not in HTTP::Tiny,
mechua
, which is normally an autovivifiedWWW::Mechanize
instance.You may override this parameter if you want to provide a custom instance of a
WWW::Mechanize
class.WRAPPED METHODS
get
Interface should be the same as it is with "get" in HTTP::Tiny.
request
Interface should be the same as it is with "request" in HTTP::Tiny
AUTHOR
Kent Fredric <kentnl@cpan.org>
COPYRIGHT AND LICENSE
This software is copyright (c) 2017 by Kent Fredric <kentnl@cpan.org>.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
Module Install Instructions
To install HTTP::Tiny::Mech, copy and paste the appropriate command in to your terminal.
cpanm HTTP::Tiny::Mech
perl -MCPAN -e shell install HTTP::Tiny::Mech
For more information on module installation, please visit the detailed CPAN module installation guide.