All Projects → idlesign → django-yaturbo

idlesign / django-yaturbo

Licence: BSD-3-Clause license
Reusable Django app to enable Yandex Turbo Pages for your site

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to django-yaturbo

vuepress-plugin-feed
RSS, Atom, and JSON feeds generator plugin for VuePress 1.x
Stars: ✭ 46 (+253.85%)
Mutual labels:  rss, syndication
Pushl
Push notification adapter for feeds
Stars: ✭ 25 (+92.31%)
Mutual labels:  rss, syndication
Morss
Get full text RSS feeds
Stars: ✭ 184 (+1315.38%)
Mutual labels:  rss
Spotifeed
A simple service to serve up Spotify podcasts as RSS feeds for use in any podcast app.
Stars: ✭ 238 (+1730.77%)
Mutual labels:  rss
Web Dev Feeds
A collection of over 900 RSS feeds for web developers, updated monthly
Stars: ✭ 212 (+1530.77%)
Mutual labels:  rss
Gorss
Go Terminal Feed Reader
Stars: ✭ 191 (+1369.23%)
Mutual labels:  rss
Webmonitor
实时监控网页变化,并发送通知(Monitor web page changes in real time and send notifications)
Stars: ✭ 212 (+1530.77%)
Mutual labels:  rss
Jianshurss
Jianshu RSS Feed Generator
Stars: ✭ 184 (+1315.38%)
Mutual labels:  rss
V2
Minimalist and opinionated feed reader
Stars: ✭ 3,239 (+24815.38%)
Mutual labels:  rss
Wxrss
微信公众号RSS
Stars: ✭ 203 (+1461.54%)
Mutual labels:  rss
Hackernews Daily
Hacker News daily top 10 posts
Stars: ✭ 236 (+1715.38%)
Mutual labels:  rss
Feed Io
A PHP library to read and write feeds in JSONFeed, RSS or Atom format
Stars: ✭ 200 (+1438.46%)
Mutual labels:  rss
Podcast Rss Editor
A simple Podcast RSS editor in PHP
Stars: ✭ 193 (+1384.62%)
Mutual labels:  rss
Newscatchr
FOSS Android News Reader App
Stars: ✭ 216 (+1561.54%)
Mutual labels:  rss
Feedek
FeedEk jQuery RSS/ATOM Feed Plugin
Stars: ✭ 190 (+1361.54%)
Mutual labels:  rss
Greg
A command-line podcast aggregator
Stars: ✭ 246 (+1792.31%)
Mutual labels:  rss
Brief
RSS reader extension for Firefox
Stars: ✭ 184 (+1315.38%)
Mutual labels:  rss
Blogetc
Easily add a full Laravel blog (with built in admin panel and public views) to your laravel project with this simple package.
Stars: ✭ 198 (+1423.08%)
Mutual labels:  rss
Noderssbot
Another Telegram RSS bot but in Node.js Telegram RSS 机器人
Stars: ✭ 212 (+1530.77%)
Mutual labels:  rss
reader
A Python feed reader library.
Stars: ✭ 290 (+2130.77%)
Mutual labels:  rss

django-yaturbo

https://github.com/idlesign/django-yaturbo

release lic coverage

Description

Reusable Django app to enable Yandex Turbo Pages for your site

This app allows you to define Yandex Turbo pages feeds in term similar to those of Django Syndication Feed Framework contrib:

  1. Inherit your feed class from YandexTurboFeed:
# feeds.py
from yaturbo import YandexTurboFeed

class TurboFeed(YandexTurboFeed):
    """
    More information on Django Syndication Feed Framework configuration:
    https://docs.djangoproject.com/en/2.0/ref/contrib/syndication/
    """
  1. Pass an instantiated (and optionally configured) feed object to urlpatterns:
# urls.py
from .feeds import TurboFeed

urlpatterns = [
    ...
    path('feeds/turbo/', TurboFeed()),
    ...
]

Read the docs for further information.

Documentation

http://django-yaturbo.readthedocs.org/

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].