Feeds sans noise.
Project description
So the average-joe RSS is binary ie either you subscribe to a feed or you don’t. This approach results in a ridiculous amount of junk in our inbox. What if we could subscribe define the feed that we would like to subscribe to? Thanks to the stellar django syndication framework and django filters, I was able to hack together a fix.
If you have a Book model like so:
class Book(models.Model): name = models.CharField(max_length=256) pages = models.IntegerField() def __unicode__(self): return self.name
A django_filter FilterSet like so:
class BookFilterSet(django_filters.FilterSet): pages = django_filters.NumberFilter(lookup_type='lt') class Meta: model = Book fields = ['pages']
A FilteredFeed class like so:
class BookFilteredFeed(BaseFilteredFeed): model = Book filter_set = BookFilterSet title = "BookFeed" link = "http://localhost:8000" description = "Get alerts for new books - less than given number of pages!" def item_link(self, item): return reverse('book_detail', args=[item.id])
Hook up the necessary urls like so:
urlpatterns = patterns('', url(r'^books/feed$', BookFilteredFeed.as_view(), name='book_feed'), )
And finally, if we have the following 3 books in our DB:
Introduction to Python (100 pages)
Introduction to C (300 pages)
Javascript - The good parts (300 pages)
Hitting http://localhost:8000/books/feed will give you an RSS feed includes:
Introduction to Python
Introduction to C
Javascript - The good parts
And hitting http://localhost:8000/books/feed?pages=200 will give you an RSS feed that just includes:
Introduction to Python
You users will forever remain grateful for sparing them the deluge that follows a binary subscription. You will be hailed the king of syndication, worshipped as a rock star and live happily ever after. The best part is that it takes a minute to get started:
pip install django_filtered_feed
Followed ofcourse by including filtered_feed in your INSTALLED_APPS.
INSTALLED_APPS = ( ... 'filtered_feed', ... )
History
0.1.0 (2014-08-18)
First release on PyPI.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file django_filtered_feed-0.1.0.tar.gz
.
File metadata
- Download URL: django_filtered_feed-0.1.0.tar.gz
- Upload date:
- Size: 14.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 64fdd25cf4653ff0e29f48fe13c6651d7b66cb82c9ef5b9da3b3a50e9f587221 |
|
MD5 | 1fe1a8c3abbc8b620f46ffd21c1735f5 |
|
BLAKE2b-256 | 45532fab4aab6797cccfd8e1bbc737248bd6535aef3d936dff617d6e63a49195 |