Feedistiller.FeedAttributes (feedistiller v3.2.0)

The attributes of a feed to download.

  • name: a name for the feed
  • url: web address of the feed
  • user: user for protected feed
  • password: password for protected feed
  • dir: subdirectory where the downloaded items will be put under the destination directory
  • destination: the directory where to put the downloaded items (they will be put in a subdirectory with the same name as the feed). Default is . (current directory)
  • max_simultaneous_downloads: the maximum number of item to download at the same time (default is 3)
  • filters: the filters applied to the feed
  • timeout: timeout applied to http operations

Link to this section Summary

Link to this section Types

Specs

t() :: %Feedistiller.FeedAttributes{
  clean: boolean(),
  destination: String.t(),
  dir: String.t(),
  filters: Filters.t(),
  max_simultaneous_downloads: :unlimited | integer(),
  name: String.t(),
  only_new: boolean(),
  password: String.t(),
  timeout: integer(),
  url: String.t(),
  user: String.t()
}