Feedistiller.FeedAttributes

The attributes of a feed to download.

  • url: web address of the feed
  • user: user for protected feed
  • password: password for protected feed
  • 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

Summary

Types

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