Source code for dash.contrib.plugins.rss_feed.templatetags.rss_feed_tags

import datetime

from django import template

register = template.Library()

@register.filter
[docs]def convert_to_datetime(value): converted = datetime.datetime( year = value.tm_year, month = value.tm_mon, day = value.tm_mday, hour = value.tm_hour, minute = value.tm_min, second = value.tm_sec ) return converted
Read the Docs v: 0.1.4
Versions
latest
0.3.2
0.3
0.2.4
0.1.4
Downloads
On Read the Docs
Project Home
Builds

Free document hosting provided by Read the Docs.