summaryrefslogtreecommitdiffstats
path: root/perl/perl-http-tiny/README
diff options
context:
space:
mode:
author Tonus2020-01-06 00:47:50 +0100
committer Willy Sudiarto Raharjo2020-01-12 02:48:01 +0100
commit2b78fb21404dcfd22e484e707d8e6ca19c56ec1d (patch)
treeaefd81e1cede4be1a63bd039dfc5fd12c3ba4706 /perl/perl-http-tiny/README
parent3d5a768166df0dc37854aed8d9dec39630fe8beb (diff)
downloadslackbuilds-2b78fb21404dcfd22e484e707d8e6ca19c56ec1d.tar.gz
perl/perl-http-tiny: Added (small, simple, correct HTTP/1.1 client)
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'perl/perl-http-tiny/README')
-rw-r--r--perl/perl-http-tiny/README13
1 files changed, 13 insertions, 0 deletions
diff --git a/perl/perl-http-tiny/README b/perl/perl-http-tiny/README
new file mode 100644
index 0000000000..e54fbf41a0
--- /dev/null
+++ b/perl/perl-http-tiny/README
@@ -0,0 +1,13 @@
+ HTTP::Tiny - A small, simple, correct HTTP/1.1 client
+
+ This is a very simple HTTP/1.1 client, designed for doing simple
+ requests without the overhead of a large framework like LWP::UserAgent.
+
+ It is more correct and more complete than HTTP::Lite. It supports
+ proxies and redirection. It also correctly resumes after EINTR.
+
+ If IO::Socket::IP 0.25 or later is installed, HTTP::Tiny will use it
+ instead of IO::Socket::INET for transparent support for both IPv4 and
+ IPv6.
+
+ Cookie support requires HTTP::CookieJar or an equivalent class.