We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This is the log output:
2023-07-12 20:33:57,386 - INFO - icrawler.crawler - start crawling... 2023-07-12 20:33:57,386 - INFO - icrawler.crawler - starting 1 feeder threads... 2023-07-12 20:33:57,388 - INFO - feeder - thread feeder-001 exit 2023-07-12 20:33:57,389 - INFO - icrawler.crawler - starting 1 parser threads... 2023-07-12 20:33:57,390 - INFO - icrawler.crawler - starting 1 downloader threads... 2023-07-12 20:33:57,752 - INFO - parser - parsing result page https://www.google.com/search?q=Overlord+Anime&ijn=0&start=0&tbs=&tbm=isch Exception in thread parser-001: Traceback (most recent call last): File "C:\Users\User\AppData\Local\Programs\Python\Python311\Lib\threading.py", line 1038, in _bootstrap_inner self.run() File "C:\Users\User\AppData\Local\Programs\Python\Python311\Lib\threading.py", line 975, in run self._target(*self._args, **self._kwargs) File "C:\Users\User\AppData\Local\Programs\Python\Python311\Lib\site-packages\icrawler\parser.py", line 94, in worker_exec for task in self.parse(response, **kwargs): TypeError: 'NoneType' object is not iterable 2023-07-12 20:34:02,404 - INFO - downloader - no more download task for thread downloader-001 2023-07-12 20:34:02,404 - INFO - downloader - thread downloader-001 exit 2023-07-12 20:34:03,394 - INFO - icrawler.crawler - Crawling task done!
And this is my Code:
from icrawler.builtin import GoogleImageCrawler
google_crawler = GoogleImageCrawler(storage={'root_dir': 'output'}) google_crawler.crawl(keyword='Overlord Anime', max_num=10)
Im using the latest version (0.6.7)
The text was updated successfully, but these errors were encountered:
Closing due to duplication of #107
Sorry, something went wrong.
No branches or pull requests
This is the log output:
2023-07-12 20:33:57,386 - INFO - icrawler.crawler - start crawling...
2023-07-12 20:33:57,386 - INFO - icrawler.crawler - starting 1 feeder threads...
2023-07-12 20:33:57,388 - INFO - feeder - thread feeder-001 exit
2023-07-12 20:33:57,389 - INFO - icrawler.crawler - starting 1 parser threads...
2023-07-12 20:33:57,390 - INFO - icrawler.crawler - starting 1 downloader threads...
2023-07-12 20:33:57,752 - INFO - parser - parsing result page https://www.google.com/search?q=Overlord+Anime&ijn=0&start=0&tbs=&tbm=isch
Exception in thread parser-001:
Traceback (most recent call last):
File "C:\Users\User\AppData\Local\Programs\Python\Python311\Lib\threading.py", line 1038, in _bootstrap_inner
self.run()
File "C:\Users\User\AppData\Local\Programs\Python\Python311\Lib\threading.py", line 975, in run
self._target(*self._args, **self._kwargs)
File "C:\Users\User\AppData\Local\Programs\Python\Python311\Lib\site-packages\icrawler\parser.py", line 94, in worker_exec
for task in self.parse(response, **kwargs):
TypeError: 'NoneType' object is not iterable
2023-07-12 20:34:02,404 - INFO - downloader - no more download task for thread downloader-001
2023-07-12 20:34:02,404 - INFO - downloader - thread downloader-001 exit
2023-07-12 20:34:03,394 - INFO - icrawler.crawler - Crawling task done!
And this is my Code:
from icrawler.builtin import GoogleImageCrawler
google_crawler = GoogleImageCrawler(storage={'root_dir': 'output'})
google_crawler.crawl(keyword='Overlord Anime', max_num=10)
Im using the latest version (0.6.7)
The text was updated successfully, but these errors were encountered: