diff options
author | Alexandre Flament <alex@al-f.net> | 2015-05-02 15:45:17 +0200 |
---|---|---|
committer | Alexandre Flament <alex@al-f.net> | 2015-05-02 15:45:17 +0200 |
commit | 4689fe341ca7c7231d0409526b9ee0f2eadde445 (patch) | |
tree | 12d51f3471b2dfd448768cb8e540ee4668869453 /searx/engines/deviantart.py | |
parent | bbd83f5a519381ac7ea690a1645258d106a9ba8a (diff) | |
download | searxng-4689fe341ca7c7231d0409526b9ee0f2eadde445.tar.gz searxng-4689fe341ca7c7231d0409526b9ee0f2eadde445.zip |
update versions.cfg to use the current up-to-date packages
Diffstat (limited to 'searx/engines/deviantart.py')
-rw-r--r-- | searx/engines/deviantart.py | 24 |
1 files changed, 13 insertions, 11 deletions
diff --git a/searx/engines/deviantart.py b/searx/engines/deviantart.py index 4198e8c76..6606215e8 100644 --- a/searx/engines/deviantart.py +++ b/searx/engines/deviantart.py @@ -1,14 +1,16 @@ -## Deviantart (Images) -# -# @website https://www.deviantart.com/ -# @provide-api yes (https://www.deviantart.com/developers/) (RSS) -# -# @using-api no (TODO, rewrite to api) -# @results HTML -# @stable no (HTML can change) -# @parse url, title, thumbnail_src, img_src -# -# @todo rewrite to api +""" + Deviantart (Images) + + @website https://www.deviantart.com/ + @provide-api yes (https://www.deviantart.com/developers/) (RSS) + + @using-api no (TODO, rewrite to api) + @results HTML + @stable no (HTML can change) + @parse url, title, thumbnail_src, img_src + + @todo rewrite to api +""" from urllib import urlencode from urlparse import urljoin |