Exemplo n.º 1
0
import os
import sys
from werkzeug.datastructures import MultiDict
from random import shuffle

this_folder = os.path.dirname(os.path.realpath(__file__))
sys.path.append(this_folder + '/..')

from settings import BASE_URL_FOR_EMAIL, BUGSNAG_API_KEY
from models import *
from helpers.document_helper import get_filtered_documents
from helpers.agency_helper import get_followed_agency_ids_with_backoff
import schemas.jurasticsearch as jsearch

distinct_document_types = jsearch.get_distinct_attribute_values('category')

user = db_session_users.query(User).first()
params = MultiDict({})
docs, _ = get_filtered_documents(params, user.id)
shuffle(docs)
first_doc = docs[0]
print(first_doc['title'])
params = MultiDict({"more_like_doc_id": first_doc['id']})
more_like, _ = get_filtered_documents(params, user.id)

#print([d['id'] for d in more_like])
for d in more_like:
    print(str(d['id']) + ":" + d['title'])
Exemplo n.º 2
0
def get_all_document_jurisdictions():
    return jsearch.get_distinct_attribute_values('jurisdiction')
Exemplo n.º 3
0
def get_all_document_provenances():
    return jsearch.get_distinct_attribute_values('provenance')
Exemplo n.º 4
0
def get_all_document_spider_names():
    return jsearch.get_distinct_attribute_values('spider_name')
Exemplo n.º 5
0
def get_all_document_categories():
    return jsearch.get_distinct_attribute_values('category')
Exemplo n.º 6
0
def get_all_agency_ids():
    return jsearch.get_distinct_attribute_values('agencies.id')