使用Python抓取网页图片[转载]
摘要:
ImgDownloaderimport win32com.client,time,win32inet,win32file,osclass ImgDownloader: def __init__(self,url,dir): self.__dir=dir self.__ie=win32com.client.Dispatch('InternetExplorer.Application') self.__ie.Navigate(url) self.__wait__() def __wait__(self): while... 阅读全文
posted @ 2013-05-03 09:14 seaven 阅读(516) 评论(0) 推荐(0) 编辑