IconProwl : An unofficial API for scraping images off IconFinder for web development.
Initiate the Class
from IconProwl import IconProwl
find_icon=IconProwl.IconFinder("mail")
1 : Scrape web links of images
find_icon=IconProwl.IconFinder("mail")
find_icon.images()
2 : Get Links to download and edit images
find_icon=IconProwl.IconFinder("mail")
find_icon.get_links()
3: Show/Display a particular Icon
find_icon=IconProwl.IconFinder("mail")
find_icon.show_image(2)
4 : Download an icon
find_icon=IconProwl.IconFinder("mail")
find_icon.save_image("/Users/myname/Desktop/x.jpeg",6)
There is also a class for 3D images.
from IconProwl import IconProwl
find_icon=IconProwl.IconFinder3D("mail")
Examples :
Made with Python and BeautifulSoup