logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Catmandu::Atom - modules for working with Atom feeds

Author

       Nicolas Steenlant, "<nicolas.steenlant at ugent.be>"

Contributor

       Vitali Peil, "<vitali.peil at uni-bielefeld.de>" Nicolas Franck, "<nicolas.franck at ugent.be>"

Maintainer

       Patrick Hochstenbach, "<patrick.hochstenbach at ugent.be>"

perl v5.36.0                                       2022-12-10                                Catmandu::Atom(3pm)

Modules

       •   Catmandu::Exporter::Atom

       •   Catmandu::Importer::Atom

Name

       Catmandu::Atom - modules for working with Atom feeds

Synopsis

               # From the command line
               catmandu convert Atom --url http://my.host.org/feed.atom to JSON

               # From Perl

               use Catmandu;

               my $importer = Catmandu->importer('Atom', url => 'http://my.host.org/feed.atom');

               $importer->each(sub {
                       my $entry = shift;

                       printf "%s\n" , $entry->{title};
               });

See Also