Skip to content

Instantly share code, notes, and snippets.

@jsmoxon
Created June 9, 2012 19:16
Show Gist options
  • Save jsmoxon/2902225 to your computer and use it in GitHub Desktop.
Save jsmoxon/2902225 to your computer and use it in GitHub Desktop.
urls.py for Django RSS Feed
from feeds import LatestPosts
urlpatterns = patterns('',
...
url(r'^latest/feed/$', LatestPosts()),
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment