From fe3f6b7e334c1ea2bd8ad5f832434404ff4bd13f Mon Sep 17 00:00:00 2001 From: pictuga Date: Wed, 8 Mar 2017 15:17:40 -1000 Subject: [PATCH] README: Fetch->FeedFetch --- README.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index afc6763..5d85bde 100644 --- a/README.md +++ b/README.md @@ -207,10 +207,8 @@ url = 'http://newspaper.example/feed.xml' options = morss.Options(csv=True, md=True) # arguments morss.crawler.sqlite_default = '/tmp/morss-cache.db' # sqlite cache location -rss = morss.Fetch(url, options) # this only grabs the RSS feed -rss = morss.Before(rss, options) # applies first round of options -rss = morss.Gather(rss, url, options) # this fills the feed and cleans it up -rss = morss.After(rss, options) # applies second round of options +rss = morss.FeedFetch(url, options) # this only grabs the RSS feed +rss = morss.FeedGather(rss, url, options) # this fills the feed and cleans it up output = morss.Format(rss, options) # formats final feed ```