commit: b7d578ae8041658fe6f088eb337f42238c25e2f5
parent 5ed9846bbf9ac990b35b4860d5e63bd689f41de1
Author: potato <mail@crazypotato.tk>
Date: Tue, 6 Sep 2016 16:36:04 +0200
[enh] engine header comments
Diffstat:
2 files changed, 21 insertions(+), 0 deletions(-)
diff --git a/searx/engines/dictzone.py b/searx/engines/dictzone.py
@@ -1,3 +1,14 @@
+"""
+ Dictzone
+
+ @website https://dictzone.com/
+ @provide-api no
+ @using-api no
+ @results HTML (using search portal)
+ @stable no (HTML can change)
+ @parse url, title, content
+"""
+
import re
from urlparse import urljoin
from lxml import html
diff --git a/searx/engines/translated.py b/searx/engines/translated.py
@@ -1,3 +1,13 @@
+"""
+ MyMemory Translated
+
+ @website https://mymemory.translated.net/
+ @provide-api yes (https://mymemory.translated.net/doc/spec.php)
+ @using-api yes
+ @results JSON
+ @stable yes
+ @parse url, title, content
+"""
import re
from urlparse import urljoin
from lxml import html