Skip to content

Latest commit

 

History

History
47 lines (39 loc) · 878 Bytes

csv.md

File metadata and controls

47 lines (39 loc) · 878 Bytes
title description published date tags editor dateCreated
csv
true
2022-09-18 05:03:25 UTC
markdown
2022-09-18 05:03:23 UTC

Input CSV

Adds support for CSV format (comma-delimited only). Configuration may seem a bit complex, but this has advantage of being universal solution regardless of CSV and internal entry fields.

Configuration format:

csv:
  url: <url>
  values:
    <field>: <number>

Example DB-fansubs:

csv:
  url: http://www.dattebayo.com/t/dump
  values:
    title: 3  # title is in 3rd field
    url: 1    # download url is in 1st field

Example with local file:

csv:
  url: file:///home/pi/flexget/output.csv
  values:
    filename: 1
    title: 2
    url: 3

Fields title and url are mandatory. First field is 1. List of other common (optional) fields can be found from entries documentation.