.oO SearXNG Developer Documentation Oo.
|
Functions | |
post_search (_request, search) | |
Variables | |
str | name = "Hash plugin" |
description = gettext("Converts strings to different hash digests.") | |
bool | default_on = True |
str | preference_section = 'query' |
list | query_keywords = ['md5', 'sha1', 'sha224', 'sha256', 'sha384', 'sha512'] |
str | query_examples = 'sha512 The quick brown fox jumps over the lazy dog' |
parser_re = re.compile('(md5|sha1|sha224|sha256|sha384|sha512) (.*)', re.I) | |
searx.plugins.hash_plugin.post_search | ( | _request, | |
search ) |
Definition at line 19 of file hash_plugin.py.
bool searx.plugins.hash_plugin.default_on = True |
Definition at line 11 of file hash_plugin.py.
searx.plugins.hash_plugin.description = gettext("Converts strings to different hash digests.") |
Definition at line 10 of file hash_plugin.py.
str searx.plugins.hash_plugin.name = "Hash plugin" |
Definition at line 9 of file hash_plugin.py.
searx.plugins.hash_plugin.parser_re = re.compile('(md5|sha1|sha224|sha256|sha384|sha512) (.*)', re.I) |
Definition at line 16 of file hash_plugin.py.
str searx.plugins.hash_plugin.preference_section = 'query' |
Definition at line 12 of file hash_plugin.py.
str searx.plugins.hash_plugin.query_examples = 'sha512 The quick brown fox jumps over the lazy dog' |
Definition at line 14 of file hash_plugin.py.
list searx.plugins.hash_plugin.query_keywords = ['md5', 'sha1', 'sha224', 'sha256', 'sha384', 'sha512'] |
Definition at line 13 of file hash_plugin.py.