witten
/
luminotes
Archived
1
0
Fork 0
This repository has been archived on 2023-12-16. You can view files and clone it, but cannot push or open issues or pull requests.
luminotes/view/Rss_item.py

14 lines
323 B
Python

from Rss_tags import Item, Title, Link, Description, Dc_date, Dc_creator, Guid
class Rss_item( Item ):
def __init__( self, title, link, description, date, guid ):
Item.__init__(
self,
Title( title ),
Link( link ),
Description( description ),
Dc_date( date ),
Guid( guid ),
)