https://github.com/fantomas42/django-feedgrabber
A RSS/Atom feeds grabber, for your Django websites.
https://github.com/fantomas42/django-feedgrabber
Last synced: over 1 year ago
JSON representation
A RSS/Atom feeds grabber, for your Django websites.
- Host: GitHub
- URL: https://github.com/fantomas42/django-feedgrabber
- Owner: Fantomas42
- License: bsd-3-clause
- Created: 2009-09-03T10:57:56.000Z (almost 17 years ago)
- Default Branch: master
- Last Pushed: 2010-10-06T13:28:16.000Z (almost 16 years ago)
- Last Synced: 2023-04-19T16:52:40.701Z (over 3 years ago)
- Language: Python
- Homepage: http://fantomas.willbreak.it
- Size: 105 KB
- Stars: 12
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- License: LICENSE.txt
Awesome Lists containing this project
README
==================
Django-Feedgrabber
==================
Django-feedgrabber is a django application which grabs RSS/Atom feeds
throught the network, for archiving and displaying the feeds with
categorization.
.. contents::
Install
=======
Install the package in your *PYTHON_PATH* by getting the sources and run
**setup.py** or use *pip* ::
$> pip install -e git://github.com/Fantomas42/django-feedgrabber.git#egg=django-feedgrabber
Then register the **feedgrabber** app in your *INSTALLED_APPS* project's
section.
Urls
====
Multiple urlsets are provided to ensure the navigation. ::
>>> url(r'^friendfeeds/', include('feedgrabber.urls.items')),
>>> url(r'^friendfeeds/feeds/', include('feedgrabber.urls.feeds')),
>>> url(r'^friendfeeds/authors/', include('feedgrabber.urls.authors')),
>>> url(r'^friendfeeds/languages/', include('feedgrabber.urls.languages')),
>>> url(r'^friendfeeds/categories/', include('feedgrabber.urls.categories')),
Command
=======
Feedgrabber provide one django command for grabbing the feeds. Execute it
as a cronjob to refresh yours feeds. ::
$> python manage.py grabfeeds