https://github.com/nigelhorne/genealogy-obituarydailytimes
Lookup an entry in the Obituary Daily Times
https://github.com/nigelhorne/genealogy-obituarydailytimes
cpan cpan-module genealogy obituaries perl perl-module perl5 perl5-module
Last synced: about 2 months ago
JSON representation
Lookup an entry in the Obituary Daily Times
- Host: GitHub
- URL: https://github.com/nigelhorne/genealogy-obituarydailytimes
- Owner: nigelhorne
- License: gpl-2.0
- Created: 2020-11-21T20:49:41.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2025-05-06T11:43:19.000Z (about 2 months ago)
- Last Synced: 2025-05-08T07:45:02.596Z (about 2 months ago)
- Topics: cpan, cpan-module, genealogy, obituaries, perl, perl-module, perl5, perl5-module
- Language: Perl
- Homepage: https://sites.rootsweb.com/~obituary
- Size: 195 KB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: Changes
- License: LICENSE
Awesome Lists containing this project
README
Genealogy::ObituaryDailyTimes
=============================[](https://ci.appveyor.com/project/nigelhorne/genealogy-obituarydailytimes)
[](http://search.cpan.org/~nhorne/Genealogy-ObituaryDailyTimes/)

[](https://kritika.io/users/nigelhorne/repos/7086407966497872/heads/master/)
[](http://cpants.cpanauthors.org/dist/Genealogy-ObituaryDailyTimes)
[](https://www.travis-ci.com/nigelhorne/Genealogy-ObituaryDailyTimes)
[](https://twitter.com/intent/tweet?text=Look+up+an+obituary+#perl+#gedcom+#genealogy&url=https://github.com/nigelhorne/Genealogy-ObituaryDailyTimes&via=nigelhorne)# NAME
Genealogy::ObituaryDailyTimes - Lookup an entry in the Obituary Daily Times
# VERSION
Version 0.16
# SYNOPSIS
Looks up obituaries from the Obituary Daily Times and other places.
use Genealogy::ObituaryDailyTimes;
my $info = Genealogy::ObituaryDailyTimes->new();
# ...# SUBROUTINES/METHODS
## new
Creates a Genealogy::ObituaryDailyTimes object.
my $obits = Genealogy::ObituaryDailyTimes->new();
Accepts the following optional arguments:
- `cache` - Passed to [Database::Abstraction](https://metacpan.org/pod/Database%3A%3AAbstraction)
- `config_file`Points to a configuration file which contains the parameters to `new()`.
The file can be in any common format including `YAML`, `XML`, and `INI`.
This allows the parameters to be set at run time.- `directory`
The directory containing the file obituaries.sql.
If only one argument is given to `new()`, it is taken to be `directory`.- `logger` - Passed to [Database::Abstraction](https://metacpan.org/pod/Database%3A%3AAbstraction)
## search
Searches the database.
# Returns an array of hashrefs
my @smiths = $obits->search(last => 'Smith'); # You must at least define the last name to search forprint $smiths[0]->{'first'}, "\n";
Supports two return modes:
- `List context`
Returns an array of hash references.
- `Scalar context`
Returns a single hash reference,
or `undef` if there is no match.# AUTHOR
Nigel Horne, ``
# BUGS
Ancestry has removed the archives.
The first 18 pages are on Wayback machine, but the rest is lost.# SEE ALSO
[Database::Abstraction](https://metacpan.org/pod/Database%3A%3AAbstraction)
- The Obituary Daily Times
[https://sites.rootsweb.com/~obituary/](https://sites.rootsweb.com/~obituary/)
- Archived Rootsweb data
[https://wayback.archive-it.org/20669/20231102044925/https://mlarchives.rootsweb.com/listindexes/emails?listname=gen-obit](https://wayback.archive-it.org/20669/20231102044925/https://mlarchives.rootsweb.com/listindexes/emails?listname=gen-obit)
- Funeral Notices
[https://www.funeral-notices.co.uk](https://www.funeral-notices.co.uk)
- Recent data
[https://www.freelists.org/list/obitdailytimes](https://www.freelists.org/list/obitdailytimes)
- Older data
[https://obituaries.rootsweb.com/obits/searchObits](https://obituaries.rootsweb.com/obits/searchObits)
# SUPPORT
You can find documentation for this module with the perldoc command.
perldoc Genealogy::ObituaryDailyTimes
You can also look for information at:
- MetaCPAN
[https://metacpan.org/release/Genealogy-ObituaryDailyTimes](https://metacpan.org/release/Genealogy-ObituaryDailyTimes)
- RT: CPAN's request tracker
[https://rt.cpan.org/NoAuth/Bugs.html?Dist=Genealogy-ObituaryDailyTimes](https://rt.cpan.org/NoAuth/Bugs.html?Dist=Genealogy-ObituaryDailyTimes)
- CPAN Testers' Matrix
[http://matrix.cpantesters.org/?dist=Genealogy-ObituaryDailyTimes](http://matrix.cpantesters.org/?dist=Genealogy-ObituaryDailyTimes)
- CPAN Testers Dependencies
[http://deps.cpantesters.org/?module=Genealogy::ObituaryDailyTimes](http://deps.cpantesters.org/?module=Genealogy::ObituaryDailyTimes)
# LICENSE AND COPYRIGHT
Copyright 2020-2025 Nigel Horne.
This program is released under the following licence: GPL2