Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/feedzilla/feedzilla
https://github.com/feedzilla/feedzilla
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/feedzilla/feedzilla
- Owner: feedzilla
- License: bsd-3-clause
- Created: 2014-10-10T12:28:32.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2014-10-16T12:49:36.000Z (about 10 years ago)
- Last Synced: 2024-08-01T22:56:29.313Z (5 months ago)
- Language: Python
- Size: 793 KB
- Stars: 6
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
- starred-awesome - feedzilla - (Python)
README
============================
Feedzilla Django Application
============================Changelog
=========0.21::
------
* Bug fixes and a little code clean up
* pt_BR localization
* ``django-tagging`` replaced by ``django-taggit``
* Using tag slug in URL0.20::
----* lxml instead BeautifulSoup
* New dependencies: lxml, grab
* Templates for ATOM/RSS feed moved to templates/feedzilla/feed directoryAbout feedzilla
===============This is Django application that adds to your site ability to aggregate
ATOM/RSS feeds and display them in single stream. In other words you can
use feedzilla to build planet site.Project page: https://github.com/feedzilla/feedzilla
Installation
============* Use ``pip`` or ``easy_install`` to install *feedzilla* package.
* Install dependencies (see below).
* Add feedzilla to INSTALLED_APPS.
* Run ``manage.py syncdb`` or ``manage.py syncdb --migrate`` if you use South.
* Include ``url('', include('feedzilla.urls'))`` in url config.
* Setup Site instance via Django admin interface.
* Setup feedzilla settings via settings.py. See available settings below.
You have to import default settings with ``from feedzilla.settings import *``
line.
* Setup static files. You should copy or symlink ``static/feedzilla`` directory
contents from feedzilla installation directory to your ``%MEDIA_ROOT%``.
* Play with templates. Probably you'll want override some of default templates.Dependencies
============See
* django-common
* django-taggit
* south
* feedparser
* lxml
* grab
* transliterateSettings
========* ``FEEDZILLA_PAGE_SIZE`` - number of items per page
* ``FEEDZILLA_SUMMARY_SIZE``
* ``FEEDZILLA_SITE_TITLE`` - used in feed generation
* ``FEEDZILLA_SITE_DESCRIPTION`` - used in feed generationFor actual list of settings look into ``feedzilla/settings.py``