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

Search results for "module:HTTP::Response::Encoding"

HTTP::Response::Encoding - Adds encoding() to HTTP::Response River stage one • 3 direct dependents • 4 total dependents

DANKOGAI/HTTP-Response-Encoding-0.06 - 28 Jul 2009 21:29:51 UTC

HTTP::Response - HTTP style response message River stage four • 1358 direct dependents • 8529 total dependents

The "HTTP::Response" class encapsulates HTTP style responses. A response consists of a response line, some headers, and a content body. Note that the LWP library uses HTTP style responses even for non-HTTP protocol schemes. Instances of this class ar...

OALDERS/HTTP-Message-6.45 - 27 Sep 2023 14:31:38 UTC

HTTP::Any - a common interface for HTTP clients (LWP, AnyEvent::HTTP, Curl) River stage zero No dependents

IMPORT I recommend placing using HTTP::Any in a separate module which should be used from any point of your project. Why would not make a simple one-line connection? Because of better flexibility and an option to replace the modules used. For example...

KNI/HTTP-Any-1.05 - 17 Jul 2023 09:43:41 UTC

Net::HTTP - Low-level HTTP connection (client) River stage four • 28 direct dependents • 6252 total dependents

The "Net::HTTP" class is a low-level HTTP client. An instance of the "Net::HTTP" class represents a connection to an HTTP server. The HTTP protocol is described in RFC 2616. The "Net::HTTP" class supports "HTTP/1.0" and "HTTP/1.1". "Net::HTTP" is a s...

OALDERS/Net-HTTP-6.23 - 16 Jun 2023 11:47:29 UTC

HTTP::Tiny - A small, simple, correct HTTP/1.1 client River stage four • 404 direct dependents • 3271 total dependents

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 resu...

DAGOLDEN/HTTP-Tiny-0.088 - 11 Jul 2023 12:54:02 UTC

Furl::HTTP - Low level interface to Furl River stage two • 83 direct dependents • 99 total dependents

Furl is yet another HTTP client library. LWP is the de facto standard HTTP client for Perl 5, but it is too slow for some critical jobs, and too complex for weekend hacking. Furl resolves these issues. Enjoy it!...

SYOHEX/Furl-3.14 - 13 May 2021 05:30:54 UTC

HTTP::Curl - HTTP interface for Net::Curl (clone of HTTP::Any::Curl) River stage zero No dependents

Curl use Net::Curl::Easy; use HTTP::Curl; my $easy = Net::Curl::Easy->new(); my ($is_success, $body, $headers, $redirects) = HTTP::Curl::do_http($easy, $url, $opt); or my $cb = sub { my ($is_success, $body, $headers, $redirects) = @_; ... }; HTTP::Cu...

KNI/HTTP-Curl-1.06 - 17 Jul 2023 09:43:52 UTC

Acme::HTTP - High-level access to Net::HTTP::NB and Net::HTTPS::NB River stage one • 1 direct dependent • 3 total dependents

KEICHNER/Acme-HTTP-0.10 - 28 Dec 2014 15:36:13 UTC

HTTP::AnyUA - An HTTP user agent programming interface unification layer River stage one • 4 direct dependents • 6 total dependents

This module provides a small wrapper for unifying the programming interfaces of several different actual user agents (HTTP clients) under one familiar interface. Rather than providing yet another programming interface for you to learn, HTTP::AnyUA fo...

CCM/HTTP-AnyUA-0.904 - 17 Mar 2019 06:47:23 UTC

HTTP::Proxy - A pure Perl HTTP proxy River stage one • 8 direct dependents • 8 total dependents

This module implements an HTTP proxy, using an HTTP::Daemon to accept client connections, and an LWP::UserAgent to ask for the requested pages. The most interesting feature of this proxy object is its ability to filter the HTTP requests and responses...

BOOK/HTTP-Proxy-0.304 - 16 Jun 2015 00:49:14 UTC

HTTP::Simple - Simple procedural interface to HTTP::Tiny River stage two • 1 direct dependent • 11 total dependents

This module is a wrapper of HTTP::Tiny that provides simplified functions for performing HTTP requests in a similar manner to LWP::Simple, but with slightly more useful error handling. For full control of the request process and response handling, us...

DBOOK/HTTP-Simple-0.004 - 08 May 2019 15:21:56 UTC

HTTP::Daemon - A simple http server class River stage four • 50 direct dependents • 6249 total dependents

Instances of the "HTTP::Daemon" class are HTTP/1.1 servers that listen on a socket for incoming requests. The "HTTP::Daemon" is a subclass of "IO::Socket::IP", so you can perform socket operations directly on it too. Please note that "HTTP::Daemon" u...

OALDERS/HTTP-Daemon-6.16 - 24 Feb 2023 03:09:01 UTC

HTTP::Client - Class for making HTTP requests River stage zero No dependents

HTTP::Client is a class for creating clients, that does not require LWP. It is aimed at speed. It can send HTTP Request headers, get HTTP response headers and get documents....

NEILB/HTTP-Client-1.57 - 20 Jun 2014 02:16:06 UTC

SOAP::MIME - Patch to SOAP::Lite to add attachment support. This module allows Perl clients to both compose messages with attachments, and to parse messages with attachments. River stage zero No dependents

BYRNE/SOAP-MIME-0.55-7 - 16 Apr 2003 16:41:06 UTC

HTTP::Promise - Asynchronous HTTP Request and Promise River stage one • 1 direct dependent • 2 total dependents

HTTP::Promise provides with a fast and powerful yet memory-friendly API to make true asynchronous HTTP requests using fork with Promise::Me. It is based on the design of HTTP::Message, but with a much cleaner interface to make requests and manage HTT...

JDEGUEST/HTTP-Promise-v0.5.1 - 22 Mar 2024 07:56:38 UTC

HTTP::Message - HTTP style message (base class) River stage four • 1358 direct dependents • 8529 total dependents

An "HTTP::Message" object contains some headers and a content body. The following methods are available: $mess = HTTP::Message->new $mess = HTTP::Message->new( $headers ) $mess = HTTP::Message->new( $headers, $content ) This constructs a new message ...

OALDERS/HTTP-Message-6.45 - 27 Sep 2023 14:31:38 UTC

HTTP::Request - HTTP style request message River stage four • 1358 direct dependents • 8529 total dependents

"HTTP::Request" is a class encapsulating HTTP style requests, consisting of a request line, some headers, and a content body. Note that the LWP library uses HTTP style requests even for non-HTTP protocols. Instances of this class are usually passed t...

OALDERS/HTTP-Message-6.45 - 27 Sep 2023 14:31:38 UTC

HTTP::Headers - Class encapsulating HTTP Message headers River stage four • 1358 direct dependents • 8529 total dependents

The "HTTP::Headers" class encapsulates HTTP-style message headers. The headers consist of attribute-value pairs also called fields, which may be repeated, and which are printed in a particular order. The field names are cases insensitive. Instances o...

OALDERS/HTTP-Message-6.45 - 27 Sep 2023 14:31:38 UTC

AnyEvent::HTTP - simple but non-blocking HTTP/HTTPS client River stage three • 83 direct dependents • 146 total dependents

This module is an AnyEvent user, you need to make sure that you use and run a supported event loop. This module implements a simple, stateless and non-blocking HTTP client. It supports GET, POST and other request methods, cookies and more, all on a v...

MLEHMANN/AnyEvent-HTTP-2.25 - 27 Apr 2020 12:15:25 UTC

Net::IMP::HTTP - interface for HTTP specific Net::IMP plugins River stage zero No dependents

The Net::IMP::HTTP modules make it easier to write HTTP specific IMP plugins. We distinguish between HTTP connection specific plugins and HTTP request specific plugins. The differences are: * The offset in the return values of the plugins relates for...

SULLR/Net-IMP-HTTP-0.523 - 09 Dec 2014 21:54:58 UTC
74 results (0.06 seconds)