Skip to main content

Django Google Reader Replacement

Project description

Django Feed Me
==============

[![Build Status](https://travis-ci.org/dstegelman/django-feedme.png?branch=master)](https://travis-ci.org/dstegelman/django-feedme)
[![Pypi Version](https://pypip.in/v/django-feedme/badge.png)](https://crate.io/packages/django-feedme/)


Django Feed Me is a replacement for Google Reader. It keeps track of your feeds, fetches the RSS feeds
and parses them in an easy to read interface. This is currently in development. The app works as POC using the Django
Admin. A separate interface for adding feeds is coming down in the pipeline.

![image](http://cl.ly/image/0j2z0y0K1e2e/Screen%20Shot%202013-04-27%20at%209.54.10%20AM.png)

Installation
------------

To install FeedMe simply:

pip install django-feedme

Add ``feedme`` to your installed apps. Add route a url to ``feedme.urls``

Make sure to syncdb or migrate the app:

python manage.py syncdb
python manage.py migrate


If you want to use Celery for fetching (Recommended) then add:

FEED_UPDATE_CELERY = True

to your settings file. Make sure you've installed and configured Celery properly. The syntax used should be good
for both Celery 2 and 3.

This app bundles static and works out of the box with django static files. If you aren't collecting static
you'll need to copy the static directory to where ever you serve static from.

You need to provide a login view that Feedme can use to provide a login link when the user isn't logged in. This is
referenced as ``auth_login`` by name.

url(r'^something/$', your.login.view, name='auth_login')

You will also need to provide a LOGIN_URL as well.

Dependencies
------------

As of FeedMe 1.0 feedme requires Django 1.5 and above.

Feedme also requires the use of the django-bootstrap-static library for some static files. It is bundled in setup.py so by installing this package
it should already be downloaded to your machine. In order to have the bootstrap files picked up by your static files hanlder, you'll need to add
```bootstrap``` to installed apps. This will alow Django's static files to pick up the boostrap files.


Celery Beat
-----------

To make use of the Celery beat schedule to automatically update feeds at given intervals, open your settings file and
enter something like the following:

import datetime


CELERYBEAT_SCHEDULE = {
"feed-updates": {
"task": "update_all_feeds",
"schedule": datetime.timedelta(hours=1),
},
}

More documentation for Celery can be found at the CeleryProject.

Feedme Digest
-------------

You can enable the daily email digest of new feed items by setting up the from email setting
and enabling the Celery Beat task.::


FEEDME_FROM_EMAIL = 'test@email.com'


and add the Task::

import datetime


CELERYBEAT_SCHEDULE = {
"feedme-digest": {
"task": "send_digest",
"schedule": crontab(minute=0, hour=0),
},
}


Contributions
-------------

Please place all bug reports in Github Issues. Pull requests are welcome and encouraged!!


Documentation
-------------

This document and more formal documentation at http://django-feedme.readthedocs.org/en/latest/


Additional Planned Features
---------------------------

* Add and manage feeds from the front end (rather than Django Admin)
* Look and Feel updates
* Tests

Questions/Comments/Hate Mail?
-----------------------------

Drop an issue in Github and I'll be sure to find it.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-feedme-1.2.2.tar.gz (22.2 kB view details)

Uploaded Source

Built Distribution

django_feedme-1.2.2-py2-none-any.whl (37.4 kB view details)

Uploaded Python 2

File details

Details for the file django-feedme-1.2.2.tar.gz.

File metadata

File hashes

Hashes for django-feedme-1.2.2.tar.gz
Algorithm Hash digest
SHA256 7f7ea6116e4393f0457518169149121d0a68a39c784d22caf83529ee9d8399fe
MD5 db8efc6a42688c71395625d7f0b1f1ae
BLAKE2b-256 df50db71956b965701f44e837db982c5969c5144c568fae73e833d817d2c2094

See more details on using hashes here.

Provenance

File details

Details for the file django_feedme-1.2.2-py2-none-any.whl.

File metadata

File hashes

Hashes for django_feedme-1.2.2-py2-none-any.whl
Algorithm Hash digest
SHA256 db0ea6ddc520546325efd26ab62238a45af03bc38360444b43355044a470552e
MD5 6616666cb64840965f28ae63bba9d748
BLAKE2b-256 89023b4bf1d2738f4a4f8e508746daced47f916fbad4a3434f41f98d7fe06ba3

See more details on using hashes here.

Provenance

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page