The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

Plagger::Plugin::Publish::CSV - Publish feeds as CSV

SYNOPSIS

  - module: Publish::CSV
    config:
      dir: /var/web/csv
      encoding: euc-jp
      filename: my_%t.csv
      mode: append
      column:
       - title
       - permalink

CONFIG

dir

Directory to save csv files in.

filename

Filename to be used to create csv files. It defaults to %i.csv. It supports the following format like printf():

  • %u url

  • %l link

  • %t title

  • %i id

mode

Specify 'append' if you want to append entries to an existing file rather than creating a new file.

column

Chose the columns of entry which you want to write to the csv. It defaults to title and permalink.

AUTHOR

Naoya Ito <naoya@bloghackers.net>

SEE ALSO

Plagger, Text::CSV_PP