Genealogy::FindaGrave - Find URLs on FindaGrave for a person
Version 0.07
use HTTP::Cache::Transparent; # be nice
use Genealogy::FindaGrave;
HTTP::Cache::Transparent::init({
BasePath => '/var/cache/loc'
});
my $f = Genealogy::ChroniclingAmerica->new({
firstname => 'John',
lastname => 'Smith',
state => 'Maryland',
date_of_death => 1862
});
while(my $url = $f->get_next_entry()) {
print "$url\n";
}
}
Creates a Genealogy::FindaGrave object.
It takes two mandatory arguments firstname and lastname.
Also one of either date_of_birth and date_of_death must be given.
There are four optional arguments: middlename, country, ua and host.
host is the domain of the site to search, the default is www.findagrave.com.
ua is a pointer to an object that understands get and env_proxy messages, such as LWP::UserAgent::Throttled.
Returns the next match as a URL to the Find-A-Grave page.
Nigel Horne, <njh at bandsman.co.uk>
Please report any bugs or feature requests to bug-genealogy-findagrave at rt.cpan.org
,
or through the web interface at
http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Genealogy-FindaGrave.
I will be notified, and then you'll
automatically be notified of progress on your bug as I make changes.
https://github.com/nigelhorne/gedcom https://www.findagrave.com
You can find documentation for this module with the perldoc command.
perldoc Genealogy::FindaGrave
You can also look for information at:
-
RT: CPAN's request tracker
http://rt.cpan.org/NoAuth/Bugs.html?Dist=Genealogy-FindaGrave
-
AnnoCPAN: Annotated CPAN documentation
-
Search CPAN
Copyright 2016-2024 Nigel Horne.
This program is released under the following licence: GPL2