给Python的Django框架下搭建的BLOG添加RSS功能的教程
作者:吴文苑 时间:2021-09-03 00:27:15
前些天有位网友建议我在博客中添加RSS订阅功能,觉得挺好,所以自己抽空看了一下如何在Django中添加RSS功能,发现使用Django中的syndication feed framework很容易实现。
具体实现步骤和代码如下:
1、Feed类
# -*- coding: utf-8 -*-
from django.conf import settings
from django.contrib.syndication.views import Feed
from django.utils.feedgenerator import Rss201rev2Feed
from blog.models import Article
from .constants import SYNC_STATUS
class ExtendedRSSFeed(Rss201rev2Feed):
mime_type = 'application/xml'
"""
Create a type of RSS feed that has content:encoded elements.
"""
def root_attributes(self):
attrs = super(ExtendedRSSFeed, self).root_attributes()
attrs['xmlns:content'] = 'http://purl.org/rss/1.0/modules/content/'
return attrs
def add_item_elements(self, handler, item):
super(ExtendedRSSFeed, self).add_item_elements(handler, item)
handler.addQuickElement(u'content:encoded', item['content_encoded'])
class LatestArticleFeed(Feed):
feed_type = ExtendedRSSFeed
title = settings.WEBSITE_NAME
link = settings.WEBSITE_URL
author = settings.WEBSITE_NAME
description = settings.WEBSITE_DESC + u"关注python、django、vim、linux、web开发和互联网"
def items(self):
return Article.objects.filter(hided=False, published=True, sync_status=SYNC_STATUS.SYNCED).order_by('-publish_date')[:10]
def item_extra_kwargs(self, item):
return {'content_encoded': self.item_content_encoded(item)}
def item_title(self, item):
return item.title
# item_link is only needed if NewsItem has no get_absolute_url method.
def item_link(self, item):
return '/article/%s/' % item.slug
def item_description(self, item):
return item.description
def item_author_name(self, item):
return item.creator.get_full_name()
def item_pubdate(self, item):
return item.publish_date
def item_content_encoded(self, item):
return item.content
2、URL配置
from django import VERSION
if VERSION[0: 2] > (1, 3):
from django.conf.urls import patterns, include, url
else:
from django.conf.urls.defaults import patterns, include, url
from .feeds import LatestArticleFeed
urlpatterns = patterns(
'',
url(r'^feed/$', LatestArticleFeed()),
)
标签:Python,Django
0
投稿
猜你喜欢
MySQL执行状态的查看与分析
2024-01-23 18:48:56
Python实现数值积分方式
2022-01-23 14:00:37
Linux下mysql的root密码修改方法
2024-01-13 17:39:44
通过Python编写一个简单登录功能过程解析
2022-05-18 23:02:51
Golang轻量级IoC容器安装使用示例
2023-07-23 14:49:12
Python Pandas中根据列的值选取多行数据
2023-02-16 04:17:59
关于Python自动化操作Excel
2022-07-19 23:25:48
使用python修改文件并立即写回到原始位置操作(inplace读写)
2021-02-04 11:22:31
MySQL中Order By多字段排序规则代码示例
2024-01-22 01:10:35
Web前端应用十种常用技术
2010-09-01 20:46:00
MySQL中Binary Log二进制日志文件的基本操作命令小结
2024-01-12 22:24:20
python中数字列表转化为数字字符串的实例代码
2021-04-30 02:46:45
Golang编程实现删除字符串中出现次数最少字符的方法
2024-05-25 15:15:56
Python二维码生成识别实例详解
2021-06-10 19:59:22
MYSQL与SQLserver之间存储过程的转换方式
2024-01-26 20:52:53
基于Python3制作一个带GUI界面的小说爬虫工具
2023-04-02 17:33:04
Python实现周期性抓取网页内容的方法
2023-04-12 01:33:36
Python爬虫实现抓取京东店铺信息及下载图片功能示例
2022-11-26 21:02:44
MySQL数据库备份恢复的两个实用方法
2008-12-31 15:09:00
BP神经网络原理及Python实现代码
2022-09-04 21:12:24