From c5e3aa664a1147b2f762fcbfbecf37d79242b0ac Mon Sep 17 00:00:00 2001 From: pictuga Date: Sat, 8 Nov 2014 20:32:34 +0100 Subject: [PATCH] Update README after After split --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index d520cf5..55b91e9 100644 --- a/README.md +++ b/README.md @@ -137,9 +137,11 @@ cache_path = '/tmp/morss-cache' # cache folder, needs write permission url, cache = morss.Init(url, cache_path, options) # properly create folders and objects rss = morss.Fetch(url, cache, options) # this only grabs the RSS feed +rss = morss.Before(rss, options) # applies first round of options rss = morss.Gather(rss, url, cache, options) # this fills the feed and cleans it up +rss = morss.After(rss, options) # applies second round of options -output = morss.After(rss, options) # formats final feed +output = morss.Format(rss, options) # formats final feed ``` ##Cache information