Add source to tags automatically

This commit is contained in:
Tim Van Baak 2019-06-19 12:55:09 -07:00
parent ee7927ec9e
commit 255d84bc88
1 changed files with 4 additions and 1 deletions

View File

@ -9,6 +9,9 @@ logger = logging.getLogger("inquisitor.item")
def create_item(source, item_id, title, link=None, ts=None, author=None, body=None, tags=None):
import time
taglist = tags or []
if source not in taglist:
taglist.append(source)
item = {
'id': item_id,
'source': source,
@ -19,7 +22,7 @@ def create_item(source, item_id, title, link=None, ts=None, author=None, body=No
'time': ts,
'author': author,
'body': body,
'tags': [] if tags is None else tags,
'tags': taglist,
}
return item