diff options
author | Cqoicebordel <Cqoicebordel@users.noreply.github.com> | 2015-02-01 14:31:04 +0100 |
---|---|---|
committer | Cqoicebordel <Cqoicebordel@users.noreply.github.com> | 2015-02-01 14:31:04 +0100 |
commit | c6535dd65ebf110d00d633db1170f35cf60b8df0 (patch) | |
tree | 30cdd65dc9683bbd81f2e00a6837ed48051c0d0b /searx/engines/flickr_noapi.py | |
parent | 8cf2ee57216b4dffc419e1762ff1fe4dfd30e227 (diff) | |
download | searxng-c6535dd65ebf110d00d633db1170f35cf60b8df0.tar.gz searxng-c6535dd65ebf110d00d633db1170f35cf60b8df0.zip |
Flickr Noapi unit test
Diffstat (limited to 'searx/engines/flickr_noapi.py')
-rw-r--r-- | searx/engines/flickr_noapi.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/searx/engines/flickr_noapi.py b/searx/engines/flickr_noapi.py index 66c6f4027..73dff44c4 100644 --- a/searx/engines/flickr_noapi.py +++ b/searx/engines/flickr_noapi.py @@ -17,7 +17,7 @@ import re categories = ['images'] url = 'https://secure.flickr.com/' -search_url = url+'search/?{query}&page={page}' +search_url = url + 'search/?{query}&page={page}' photo_url = 'https://www.flickr.com/photos/{userid}/{photoid}' regex = re.compile(r"\"search-photos-models\",\"photos\":(.*}),\"totalItems\":", re.DOTALL) image_sizes = ('o', 'k', 'h', 'b', 'c', 'z', 'n', 'm', 't', 'q', 's') |