diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2019-02-22 11:48:41 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2019-02-22 11:48:41 -0800 |
commit | fbbd7f2dc2d4a82d3da9327a7297f47103196544 (patch) | |
tree | 76d6c953b3842fd4273a73a8780c554638f7ecff /python/fatcat_web/search.py | |
parent | 74c5f30ab878a914d3edb51040f4d78054684947 (diff) | |
download | fatcat-fbbd7f2dc2d4a82d3da9327a7297f47103196544.tar.gz fatcat-fbbd7f2dc2d4a82d3da9327a7297f47103196544.zip |
bunch of lint/whitespace cleanups
Diffstat (limited to 'python/fatcat_web/search.py')
-rw-r--r-- | python/fatcat_web/search.py | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/python/fatcat_web/search.py b/python/fatcat_web/search.py index f10ce406..3b48f49e 100644 --- a/python/fatcat_web/search.py +++ b/python/fatcat_web/search.py @@ -1,8 +1,4 @@ -import requests -from flask import abort, flash -from fatcat_web import app - """ Helpers for doing elasticsearch queries (used in the web interface; not part of the formal API) @@ -10,6 +6,10 @@ the formal API) TODO: ELASTICSEARCH_*_INDEX should probably be factored out and just hard-coded """ +import requests +from flask import abort, flash +from fatcat_web import app + def do_search(index, request, limit=30): @@ -119,14 +119,14 @@ def get_elastic_entity_stats(): stats = {} # 2. releases - # x=> total count - # x=> total citation records - # x=> total (paper, chapter, proceeding) - # x=> with fulltext on web - # x=> open access - # x=> not in KBART, in IA - # - # Can probably do the above with two queries: + # - total count + # - total citation records + # - total (paper, chapter, proceeding) + # - " with fulltext on web + # - " open access + # - " not in KBART, in IA + # + # Can do the above with two queries: # - all releases, aggregate count and sum(ref_count) # - in-scope works, aggregate count by (fulltext, OA, kbart/ia) |