Closed DeepVoltaire closed 7 years ago
This bug was introduced when adding support for filtering image usage rights, and it is fixed now. You can try the latest version.
Thanks, it works now! I think there is still a little bug, because I get 104 results when searching from date(2011, 1, 1) to date(2011, 2, 1), but 457 from date(2011, 1, 1) to date(2011, 1, 2). It should be the other way around I think, because of american date notation %m/%d/%Y, so in google.py instead of:
cd_min = date_min.strftime('%d/%m/%Y') if date_min else ''
cd_max = date_max.strftime('%d/%m/%Y') if date_max else ''
cd_min = date_min.strftime('%m/%d/%Y') if date_min else ''
cd_max = date_max.strftime('%m/%d/%Y') if date_max else ''
I created a pull request.
Thanks a lot for figuring this out!
Date format fixed in #33
Hi, thanks for the great package!
I am trying to get minimum and maximum date working for Google Image Search. My minimum example
is not working as expected. It should download no images, but is downloading images from all time periods. Am I doing something wrong?
Thanks for your help!