Browse Source

[enh] engine header comments

potato 8 years ago
parent
commit
b7d578ae80
2 changed files with 21 additions and 0 deletions
  1. 11
    0
      searx/engines/dictzone.py
  2. 10
    0
      searx/engines/translated.py

+ 11
- 0
searx/engines/dictzone.py View File

@@ -1,3 +1,14 @@
1
+"""
2
+ Dictzone
3
+
4
+ @website     https://dictzone.com/
5
+ @provide-api no
6
+ @using-api   no
7
+ @results     HTML (using search portal)
8
+ @stable      no (HTML can change)
9
+ @parse       url, title, content
10
+"""
11
+
1 12
 import re
2 13
 from urlparse import urljoin
3 14
 from lxml import html

+ 10
- 0
searx/engines/translated.py View File

@@ -1,3 +1,13 @@
1
+"""
2
+ MyMemory Translated
3
+
4
+ @website     https://mymemory.translated.net/
5
+ @provide-api yes (https://mymemory.translated.net/doc/spec.php)
6
+ @using-api   yes
7
+ @results     JSON
8
+ @stable      yes
9
+ @parse       url, title, content
10
+"""
1 11
 import re
2 12
 from urlparse import urljoin
3 13
 from lxml import html