31 lines
578 B
Python
31 lines
578 B
Python
# Standard library imports
|
|
import importlib.util
|
|
import os
|
|
import logging
|
|
|
|
# Globals
|
|
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,
|
|
'active': True,
|
|
'created': time.time(),
|
|
'title': title,
|
|
'link': link,
|
|
'time': ts,
|
|
'author': author,
|
|
'body': body,
|
|
'tags': taglist,
|
|
}
|
|
return item
|
|
|
|
import builtins
|
|
builtins.create_item = create_item
|