2021-01-13 10:31:25 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
2024-03-11 06:45:08 +00:00
|
|
|
"""PubMed (Scholar publications)
|
|
|
|
|
2017-09-22 20:09:33 +00:00
|
|
|
"""
|
|
|
|
|
|
|
|
from datetime import datetime
|
2020-08-06 15:42:46 +00:00
|
|
|
from urllib.parse import urlencode
|
2024-03-11 06:45:08 +00:00
|
|
|
|
|
|
|
from lxml import etree
|
[httpx] replace searx.poolrequests by searx.network
settings.yml:
* outgoing.networks:
* can contains network definition
* propertiers: enable_http, verify, http2, max_connections, max_keepalive_connections,
keepalive_expiry, local_addresses, support_ipv4, support_ipv6, proxies, max_redirects, retries
* retries: 0 by default, number of times searx retries to send the HTTP request (using different IP & proxy each time)
* local_addresses can be "192.168.0.1/24" (it supports IPv6)
* support_ipv4 & support_ipv6: both True by default
see https://github.com/searx/searx/pull/1034
* each engine can define a "network" section:
* either a full network description
* either reference an existing network
* all HTTP requests of engine use the same HTTP configuration (it was not the case before, see proxy configuration in master)
2021-04-05 08:43:33 +00:00
|
|
|
from searx.network import get
|
2022-08-26 16:10:12 +00:00
|
|
|
from searx.utils import (
|
|
|
|
eval_xpath_getindex,
|
|
|
|
eval_xpath_list,
|
|
|
|
extract_text,
|
|
|
|
)
|
2017-09-22 20:09:33 +00:00
|
|
|
|
2021-01-13 10:31:25 +00:00
|
|
|
# about
|
|
|
|
about = {
|
|
|
|
"website": 'https://www.ncbi.nlm.nih.gov/pubmed/',
|
|
|
|
"wikidata_id": 'Q1540899',
|
|
|
|
"official_api_documentation": {
|
|
|
|
'url': 'https://www.ncbi.nlm.nih.gov/home/develop/api/',
|
2021-12-27 08:26:22 +00:00
|
|
|
'comment': 'More info on api: https://www.ncbi.nlm.nih.gov/books/NBK25501/',
|
2021-01-13 10:31:25 +00:00
|
|
|
},
|
|
|
|
"use_official_api": True,
|
|
|
|
"require_api_key": False,
|
|
|
|
"results": 'XML',
|
|
|
|
}
|
2017-09-22 20:09:33 +00:00
|
|
|
|
2022-08-26 16:10:12 +00:00
|
|
|
categories = ['science', 'scientific publications']
|
2017-09-22 20:09:33 +00:00
|
|
|
|
2021-12-27 08:26:22 +00:00
|
|
|
base_url = (
|
|
|
|
'https://eutils.ncbi.nlm.nih.gov/entrez/eutils/esearch.fcgi' + '?db=pubmed&{query}&retstart={offset}&retmax={hits}'
|
|
|
|
)
|
2017-09-22 20:09:33 +00:00
|
|
|
|
|
|
|
# engine dependent config
|
|
|
|
number_of_results = 10
|
|
|
|
pubmed_url = 'https://www.ncbi.nlm.nih.gov/pubmed/'
|
|
|
|
|
|
|
|
|
|
|
|
def request(query, params):
|
|
|
|
# basic search
|
|
|
|
offset = (params['pageno'] - 1) * number_of_results
|
|
|
|
|
2024-03-11 06:45:08 +00:00
|
|
|
string_args = {
|
|
|
|
'query': urlencode({'term': query}),
|
|
|
|
'offset': offset,
|
|
|
|
'hits': number_of_results,
|
|
|
|
}
|
2017-09-22 20:09:33 +00:00
|
|
|
|
|
|
|
params['url'] = base_url.format(**string_args)
|
|
|
|
|
|
|
|
return params
|
|
|
|
|
|
|
|
|
2024-03-11 06:45:08 +00:00
|
|
|
def response(resp): # pylint: disable=too-many-locals
|
2017-09-22 20:09:33 +00:00
|
|
|
results = []
|
|
|
|
|
|
|
|
# First retrieve notice of each result
|
2021-12-27 08:26:22 +00:00
|
|
|
pubmed_retrieve_api_url = (
|
|
|
|
'https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?' + 'db=pubmed&retmode=xml&id={pmids_string}'
|
|
|
|
)
|
2017-09-22 20:09:33 +00:00
|
|
|
|
2017-11-01 13:20:47 +00:00
|
|
|
pmids_results = etree.XML(resp.content)
|
2017-09-22 20:09:33 +00:00
|
|
|
pmids = pmids_results.xpath('//eSearchResult/IdList/Id')
|
|
|
|
pmids_string = ''
|
|
|
|
|
|
|
|
for item in pmids:
|
|
|
|
pmids_string += item.text + ','
|
|
|
|
|
2024-03-11 06:45:08 +00:00
|
|
|
retrieve_notice_args = {'pmids_string': pmids_string}
|
2017-09-22 20:09:33 +00:00
|
|
|
|
|
|
|
retrieve_url_encoded = pubmed_retrieve_api_url.format(**retrieve_notice_args)
|
|
|
|
|
2022-08-26 16:10:12 +00:00
|
|
|
search_results_response = get(retrieve_url_encoded).content
|
|
|
|
search_results = etree.XML(search_results_response)
|
|
|
|
for entry in eval_xpath_list(search_results, '//PubmedArticle'):
|
|
|
|
medline = eval_xpath_getindex(entry, './MedlineCitation', 0)
|
2017-09-22 20:09:33 +00:00
|
|
|
|
2022-08-26 16:10:12 +00:00
|
|
|
title = eval_xpath_getindex(medline, './/Article/ArticleTitle', 0).text
|
|
|
|
pmid = eval_xpath_getindex(medline, './/PMID', 0).text
|
2017-09-22 20:09:33 +00:00
|
|
|
url = pubmed_url + pmid
|
2022-08-26 16:10:12 +00:00
|
|
|
content = extract_text(
|
|
|
|
eval_xpath_getindex(medline, './/Abstract/AbstractText//text()', 0, default=None), allow_none=True
|
|
|
|
)
|
|
|
|
doi = extract_text(
|
|
|
|
eval_xpath_getindex(medline, './/ELocationID[@EIdType="doi"]/text()', 0, default=None), allow_none=True
|
|
|
|
)
|
|
|
|
journal = extract_text(
|
|
|
|
eval_xpath_getindex(medline, './Article/Journal/Title/text()', 0, default=None), allow_none=True
|
|
|
|
)
|
|
|
|
issn = extract_text(
|
|
|
|
eval_xpath_getindex(medline, './Article/Journal/ISSN/text()', 0, default=None), allow_none=True
|
|
|
|
)
|
|
|
|
authors = []
|
|
|
|
for author in eval_xpath_list(medline, './Article/AuthorList/Author'):
|
|
|
|
f = eval_xpath_getindex(author, './ForeName', 0, default=None)
|
|
|
|
l = eval_xpath_getindex(author, './LastName', 0, default=None)
|
|
|
|
f = '' if f is None else f.text
|
|
|
|
l = '' if l is None else l.text
|
|
|
|
authors.append((f + ' ' + l).strip())
|
|
|
|
|
|
|
|
res_dict = {
|
|
|
|
'template': 'paper.html',
|
|
|
|
'url': url,
|
|
|
|
'title': title,
|
2023-09-14 10:41:15 +00:00
|
|
|
'content': content or "",
|
2022-08-26 16:10:12 +00:00
|
|
|
'journal': journal,
|
|
|
|
'issn': [issn],
|
|
|
|
'authors': authors,
|
|
|
|
'doi': doi,
|
|
|
|
}
|
|
|
|
|
|
|
|
accepted_date = eval_xpath_getindex(
|
|
|
|
entry, './PubmedData/History//PubMedPubDate[@PubStatus="accepted"]', 0, default=None
|
|
|
|
)
|
|
|
|
if accepted_date is not None:
|
|
|
|
year = eval_xpath_getindex(accepted_date, './Year', 0)
|
|
|
|
month = eval_xpath_getindex(accepted_date, './Month', 0)
|
|
|
|
day = eval_xpath_getindex(accepted_date, './Day', 0)
|
|
|
|
try:
|
|
|
|
publishedDate = datetime.strptime(
|
|
|
|
year.text + '-' + month.text + '-' + day.text,
|
|
|
|
'%Y-%m-%d',
|
|
|
|
)
|
|
|
|
res_dict['publishedDate'] = publishedDate
|
2024-03-11 06:45:08 +00:00
|
|
|
except Exception as e: # pylint: disable=broad-exception-caught
|
2022-08-26 16:10:12 +00:00
|
|
|
print(e)
|
2017-12-01 19:48:10 +00:00
|
|
|
|
2017-09-22 20:09:33 +00:00
|
|
|
results.append(res_dict)
|
|
|
|
|
2022-08-26 16:10:12 +00:00
|
|
|
return results
|