diff options
Diffstat (limited to 'searx/engines/www500px.py')
-rw-r--r-- | searx/engines/www500px.py | 24 |
1 files changed, 13 insertions, 11 deletions
diff --git a/searx/engines/www500px.py b/searx/engines/www500px.py index 99dba4abf..c98e19443 100644 --- a/searx/engines/www500px.py +++ b/searx/engines/www500px.py @@ -1,14 +1,16 @@ -## 500px (Images) -# -# @website https://500px.com -# @provide-api yes (https://developers.500px.com/) -# -# @using-api no -# @results HTML -# @stable no (HTML can change) -# @parse url, title, thumbnail, img_src, content -# -# @todo rewrite to api +""" + 500px (Images) + + @website https://500px.com + @provide-api yes (https://developers.500px.com/) + + @using-api no + @results HTML + @stable no (HTML can change) + @parse url, title, thumbnail, img_src, content + + @todo rewrite to api +""" from urllib import urlencode |