Skip to content

Instantly share code, notes, and snippets.

@olamigokayphils
Created November 27, 2020 09:22
Show Gist options
  • Save olamigokayphils/c3c0a3e00f9940848c190e607e71b22b to your computer and use it in GitHub Desktop.
Save olamigokayphils/c3c0a3e00f9940848c190e607e71b22b to your computer and use it in GitHub Desktop.
Setting up RSS Feed in your Django app
from django.urls import path
from .feeds import LatestEntriesFeed
urlpatterns = [
# ...
path('latest/feed/', LatestEntriesFeed()),
# ...
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment