Go to the source code of this file.
|
dict | searx.engines.arxiv.about |
list | searx.engines.arxiv.categories = ["science", "scientific publications"] |
bool | searx.engines.arxiv.paging = True |
int | searx.engines.arxiv.arxiv_max_results = 10 |
str | searx.engines.arxiv.arxiv_search_prefix = "all" |
str | searx.engines.arxiv.base_url = "https://export.arxiv.org/api/query" |
dict | searx.engines.arxiv.arxiv_namespaces |
| searx.engines.arxiv.xpath_entry = XPath("//atom:entry", namespaces=arxiv_namespaces) |
| searx.engines.arxiv.xpath_title = XPath(".//atom:title", namespaces=arxiv_namespaces) |
| searx.engines.arxiv.xpath_id = XPath(".//atom:id", namespaces=arxiv_namespaces) |
| searx.engines.arxiv.xpath_summary = XPath(".//atom:summary", namespaces=arxiv_namespaces) |
| searx.engines.arxiv.xpath_author_name = XPath(".//atom:author/atom:name", namespaces=arxiv_namespaces) |
| searx.engines.arxiv.xpath_doi = XPath(".//arxiv:doi", namespaces=arxiv_namespaces) |
| searx.engines.arxiv.xpath_pdf = XPath(".//atom:link[@title='pdf']", namespaces=arxiv_namespaces) |
| searx.engines.arxiv.xpath_published = XPath(".//atom:published", namespaces=arxiv_namespaces) |
| searx.engines.arxiv.xpath_journal = XPath(".//arxiv:journal_ref", namespaces=arxiv_namespaces) |
| searx.engines.arxiv.xpath_category = XPath(".//atom:category/@term", namespaces=arxiv_namespaces) |
| searx.engines.arxiv.xpath_comment = XPath("./arxiv:comment", namespaces=arxiv_namespaces) |