pandora_amp/tasks.py

14 lines
342 B
Python
Raw Normal View History

2018-11-05 19:45:42 +00:00
import os
import subprocess
from celery.task import task
base = os.path.dirname(__file__)
@task(queue="encoding")
def import_documents(urls):
for url in urls:
2018-11-05 20:27:03 +00:00
url = url.strip()
if url and url.startswith('http'):
2018-11-05 19:45:42 +00:00
subprocess.call(['/srv/pandora/bin/python', os.path.join(base, 'add_website_as_pdf.py'), url])