-
Notifications
You must be signed in to change notification settings - Fork 1
/
README
93 lines (59 loc) · 2.53 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
L I B W W W - P E R L - 5
-----------------------------
The libwww-perl collection is a set of Perl modules which provides a
simple and consistent application programming interface to the
World-Wide Web. The main focus of the library is to provide classes
and functions that allow you to write WWW clients. The library also
contain modules that are of more general use and even classes that
help you implement simple HTTP servers.
PREREQUISITES
In order to install and use this package you will need Perl version
5.6 or better. Some modules within this package depend on other
packages that are distributed separately from Perl. We recommend that
you have the following packages installed before you install
libwww-perl:
URI
MIME-Base64
HTML-Tagset
HTML-Parser
libnet
Digest-MD5
Compress-Zlib
If you want to access sites using the https protocol, then you need to
install the Crypt::SSLeay or the IO::Socket::SSL module. The
README.SSL file will tell you more about how libwww-perl supports SSL.
INSTALLATION
You install libwww-perl using the normal perl module distribution drill:
perl Makefile.PL
make
make test
make install
If you don't want to install any programs (only the library files) then
pass the '--no-programs' option to Makefile.PL:
perl Makefile.PL --no-programs
DOCUMENTATION
See the lib/LWP.pm file for an overview of the library. See the
Changes file for recent changes.
POD style documentation is included in all modules and scripts. These
are normally converted to manual pages and installed as part of the
"make install" process. You should also be able to use the 'perldoc'
utility to extract and read documentation from the module files
directly.
SUPPORT
Bug reports and suggestions for improvements can be sent to the
<[email protected]> mailing list. This mailing list is also the place
for general discussions and development of the libwww-perl package.
AVAILABILITY
The latest version of libwww-perl is available from CPAN:
http://search.cpan.org/dist/libwww-perl/
If you want to hack on the source it might be a good idea to grab the
latest version with git using the command:
git clone git://gitorious.org/libwww-perl/mainline.git lwp
You can also browse the git repository at:
http://gitorious.org/projects/libwww-perl
COPYRIGHT
© 1995-2008 Gisle Aas. All rights reserved.
© 1995 Martijn Koster. All rights reserved.
This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself.
Enjoy!