FreeBSD Manual Pages
XML::Feed::Deduper(3) User Contributed Perl DocumentationXML::Feed::Deduper(3) NAME XML::Feed::Deduper - remove duplicated entries from feed SYNOPSIS use XML::Feed; use XML::Feed::Deduper; my $feed = XML::Feed->parse($content); my $deduper = XML::Feed::Deduper->new( path => '/tmp/foo.db', ); for my $entry ($deduper->dedup($feed->entries)) { # only new entries come here! } DESCRIPTION XML::Feed::Deduper is deduper for XML::Feed. You can write the aggregator more easily :) The concept is stolen from Plagger::Rule::Deduper. Enjoy! CAUTION This module is still in its beta quality. your base are belongs to us! AUTHOR Tokuhiro Matsuno <tokuhirom@gmail.com> SEE ALSO Plagger::Rule::Deduper LICENSE This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.32.0 2020-08-29 XML::Feed::Deduper(3)
NAME | SYNOPSIS | DESCRIPTION | CAUTION | AUTHOR | SEE ALSO | LICENSE
Want to link to this manual page? Use this URL:
<https://www.freebsd.org/cgi/man.cgi?query=XML::Feed::Deduper&sektion=3&manpath=FreeBSD+12.2-RELEASE+and+Ports>