Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/neilb/url-grab
Release history of URL-Grab
https://github.com/neilb/url-grab
Last synced: 18 days ago
JSON representation
Release history of URL-Grab
- Host: GitHub
- URL: https://github.com/neilb/url-grab
- Owner: neilb
- Created: 2012-03-10T23:45:10.000Z (almost 13 years ago)
- Default Branch: master
- Last Pushed: 2009-12-13T13:42:51.000Z (about 15 years ago)
- Last Synced: 2024-11-06T00:45:21.533Z (2 months ago)
- Language: Perl
- Homepage: http://search.cpan.org/dist/URL-Grab/
- Size: 71.3 KB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README
Awesome Lists containing this project
README
URL::Grab
=========URL::Grab is a perl module that drastically simplifies the fetching of files.
It is designed to be used in programs that need common (but not necessarily
simple) url-fetching features. It is extremely simple to drop into an
existing program and provides a clean interface to protocol-independant
file-access. Best of all, URL::Grab takes care of all those pesky
file-fetching details, and lets you focus on whatever it is that your program
is written to do!URL::Grab came into existence as the part of Config::YUM that downloads remote
yum-configs and header files, but it quickly became clear that this is a
general problem that many applications must deal with.Yes, URL::Grab has been heavily inspired by the famous Python urlgrabber. :-)
INSTALLATION
To install this module type the following:
perl Makefile.PL
make
make test
make installDEPENDENCIES
This module requires these other modules and libraries:
require Carp;
require LWP::UserAgent;COPYRIGHT AND LICENCE
Copyright (C) 2006-2008 by Oliver Falk
This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself, either Perl version 5.8.0 or,
at your option, any later version of Perl 5 you may have available.