{"id":13530368,"url":"https://github.com/chrisdev/django-wagtail-feeds","last_synced_at":"2025-10-21T19:40:45.883Z","repository":{"id":9472008,"uuid":"61650578","full_name":"chrisdev/django-wagtail-feeds","owner":"chrisdev","description":"Adds support for RSS and JSON Feeds to your Wagtail CMS Projects","archived":false,"fork":false,"pushed_at":"2022-12-26T20:26:41.000Z","size":1378,"stargazers_count":58,"open_issues_count":7,"forks_count":18,"subscribers_count":6,"default_branch":"master","last_synced_at":"2024-04-25T15:41:34.811Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/chrisdev.png","metadata":{"files":{"readme":"README.rst","changelog":"HISTORY.rst","contributing":"CONTRIBUTING.rst","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2016-06-21T16:44:27.000Z","updated_at":"2024-04-06T09:36:23.000Z","dependencies_parsed_at":"2023-01-13T15:22:46.151Z","dependency_job_id":null,"html_url":"https://github.com/chrisdev/django-wagtail-feeds","commit_stats":null,"previous_names":[],"tags_count":8,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chrisdev%2Fdjango-wagtail-feeds","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chrisdev%2Fdjango-wagtail-feeds/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chrisdev%2Fdjango-wagtail-feeds/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chrisdev%2Fdjango-wagtail-feeds/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/chrisdev","download_url":"https://codeload.github.com/chrisdev/django-wagtail-feeds/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246691579,"owners_count":20818535,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-08-01T07:00:48.833Z","updated_at":"2025-10-21T19:40:40.837Z","avatar_url":"https://github.com/chrisdev.png","language":"Python","funding_links":[],"categories":["Apps"],"sub_categories":["Blogging/news"],"readme":"Django Wagtail Feeds\n====================\n.. image:: https://travis-ci.org/chrisdev/django-wagtail-feeds.svg?branch=master\n    :target: https://travis-ci.org/chrisdev/django-wagtail-feeds\n\nSupport RSS Feeds, JSON Feed, Facebook Instant Articles and Apple News. Syndication feeds come in two flavors:\n\n- **BasicFeed** -  A standard `RSS V 2.0.1`_ feed designed to be used without item enclosures.\n\n- **ExtendedFeed** - An RSS V2/Atom Feed with support for item enclosures such as images or video. Use this if when want to integrate your feed with services like MailChimp or Flipboard.\n\n.. _`RSS V 2.0.1` : http://cyber.law.harvard.edu/rss/rss.html\n\nJSON feed come in two flavors:\n\n- **BasicJsonFeed** -  A standard `JSON feed`_ designed to be used without content html.\n\n- **ExtendedJsonFeed** - A JSON feed with support for content html in items.\n\n.. _`JSON feed` : https://jsonfeed.org/version/1\n\n\nGetting Started\n---------------\n\n**The latest release (0.1.0) breaks backward compatibility  with previous versions of Wagtail which were baseed Django 1.x. Use 0.0.8 for projects based on older versions of Wagtail**\n\nTo use Django Wagtail Feeds in a project::\n\n    pip install django-wagtail-feeds\n\n\nRemember to add ``wagtail_feeds`` to installed apps in settings file.\n\n`django-wagtail-feeds` has a dependency on `wagtail settings` app. You must add ``wagtail.contrib.settings`` to your INSTALLED_APPS::\n\n    INSTALLED_APPS += [\n        'wagtail.contrib.settings',\n        'wagtail_feeds',\n    ]\n\nRun migrations for Wagtail feeds::\n\n    ./manage.py migrate wagtail_feeds\n\nAdd Feed settings in the Wagtail admin\n\n.. figure:: http://i.imgur.com/aNp1VBg.png\n   :alt: Wagtail admin\n\n.. figure:: http://i.imgur.com/oRZRici.png\n   :alt: Feed Settings\n\nFinally reference it in the url.py ::\n\n    from wagtail_feeds.feeds import BasicFeed, BasicJsonFeed, ExtendedFeed, ExtendedJsonFeed\n\n    url(r'^blog/feed/basic$', BasicFeed(), name='basic_feed'),\n    url(r'^blog/feed/extended$', ExtendedFeed(), name='extended_feed'),\n\n    # JSON feed\n    url(r'^blog/feed/basic.json$', BasicJsonFeed(), name='basic_json_feed'),\n    url(r'^blog/feed/extended.json$', ExtendedJsonFeed(), name='extended_json_feed'),\n\n\nContributing\n------------\n\nContributions are welcome, and they are greatly appreciated! Every\nlittle bit helps, and credit will always be given.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchrisdev%2Fdjango-wagtail-feeds","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fchrisdev%2Fdjango-wagtail-feeds","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchrisdev%2Fdjango-wagtail-feeds/lists"}