your_img_dir of icrawler doesn't work in my code.
See original GitHub issuefrom icrawler.builtin import GoogleImageCrawler
google_crawler = GoogleImageCrawler(
feeder_threads=1,
parser_threads=1,
downloader_threads=4,
storage={'root_dir': 'C:\\Users\Park\PycharmProjects\\test_img'})
filters = dict(
date=((2017, 1, 1), (2020, 3, 1)))
google_crawler.crawl(keyword='cat', filters=filters, offset=0, max_num=30,
max_size=None, file_idx_offset=0)
that is my code. i was looking for how to change the ‘your_img_dir’ arg. and someone said that just put my dir for saving the downloaded image from google. and then dont change ‘root_dir’. So i just follow that.
My code show me 2020-03-17 16:04:46,173 - INFO - icrawler.crawler - Crawling task done! but there is no downloaded image at ‘C:\Users\Park\PycharmProjects\test_img’
there is any problem? or Am i doing wrong way?
Issue Analytics
- State:
- Created 4 years ago
- Reactions:4
- Comments:7
Top Results From Across the Web
Icrawler works only 1 time after then it doesn't work
so i just follow doc how to use Icrawler libarary. My code is as follow from icrawler.builtin import GoogleImageCrawler import os save_dir =...
Read more >How to use the icrawler.builtin.GoogleImageCrawler function ...
Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues...
Read more >icrawler Documentation - Read the Docs
color_codes – A comma-delimited list of color codes, which filters the results by your chosen color(s). Please see any Flickr search page ...
Read more >Built-in crawlers — icrawler 0.6.6 documentation
from icrawler.builtin import BaiduImageCrawler, BingImageCrawler, ... list of color codes, which filters the results by your chosen color(s).
Read more >custom image dataset using icrawler - Kaggle
Explore and run machine learning code with Kaggle Notebooks | Using data from No ... But there might be a situation where you...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I encountered the same problem. #65 maybe answer the problem.
Resolved in #84