# NAME WWW::KeePassHttp - Interface with KeePass PasswordSafe through the KeePassHttp plugin # SYNOPSIS use WWW::KeePassHttp; my $kph = WWW::KeePassHttp->new(Key => $key); $kph->associate() unless $kph->test_associate(); my @entries = @${ $kph->get_logins($search_string) }; print $entry[0]->url; print $entry[0]->login; print $entry[0]->password; # DESCRIPTION Interface with KeePass PasswordSafe through the KeePassHttp plugin. Allows reading entries based on URL or TITLE, and creating a new entry as well. ## REQUIREMENTS You need to have KeePass (or compatible) on your system, with the KeePassHttp plugin installed. # AUTHOR Peter C. Jones `` Please report any bugs or feature requests thru the repository's interface at [https://github.com/pryrt/WWW-KeePassHttp/issues](https://github.com/pryrt/WWW-KeePassHttp/issues).
Coverage Status github perl-ci
# COPYRIGHT Copyright (C) 2021 Peter C. Jones # LICENSE This program is free software; you can redistribute it and/or modify it under the terms of either: the GNU General Public License as published by the Free Software Foundation; or the Artistic License. See [http://dev.perl.org/licenses/](http://dev.perl.org/licenses/) for more information.