最新回答 / 独孤翎竑
from selenium import webdriverfrom selenium.webdriver.support.wait import WebDriverWaitfrom selenium.webdriver.support import expected_conditions as ECfrom selenium.common.exceptions import NoSuchElementExceptionfrom selenium.webdriver.common.by import By...
2017-09-01
最新回答 / freedom_X20A
def get_new_url(self):#从url管理器中获取一个新的带爬取得url new_url=self.new_urls.pop()#pop方法会从列表中获取url并会移除 self.old_urls.add(new_url)#将此url添加进old_url return new_url你多了个add
2017-08-31
最新回答 / 慕仰5215872
Python 2.7.9 之后引入了一个新特性当你urllib.urlopen一个 https 的时候会验证一次 SSL 证书 当目标使用的是自签名的证书时就会爆出一个 urllib2.URLError: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:581)> 的错误消息
2017-08-29
已采纳回答 / Sun灬Moon
links = soup.find_all('a',href=re.compile(r"^/item/")) 匹配html格式中href后指定的url以/item/开头的段落new_url=link['href'] 将获取到的单条href段落信息中href后指定的url数据赋值给new_url
2017-08-28
最新回答 / 慕粉2223158941
public static void main(String[] args) { System.out.println("Hello World!"); } }
2017-08-26