Skip to content

Commit

Permalink
bump to v0.6.6, add support of python 3.9, remove python 2 support
Browse files Browse the repository at this point in the history
Signed-off-by: Zhiyuan Chen <[email protected]>
  • Loading branch information
Zhiyuan Chen committed Aug 14, 2021
1 parent d1aee8f commit 3506401
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion icrawler/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.6.5'
__version__ = '0.6.6'

2 comments on commit 3506401

@shigeyuu1234
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

from icrawler.builtin import BingImageCrawler

bing_crawler = BingImageCrawler(
downloader_threads=4,
storage={'root_dir': 'images'})

bing_crawler.crawl(
keyword="sunflower ひまわり",
max_num=100)

@ZhiyuanChen
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

from icrawler.builtin import BingImageCrawler

bing_crawler = BingImageCrawler( downloader_threads=4, storage={'root_dir': 'images'})

bing_crawler.crawl( keyword="sunflower ひまわり", max_num=100)

Is there anything wrong with the code?

Please sign in to comment.