无法在python中获取网页的实际内容

时间:2016-07-08 08:35:16

标签: python python-2.7 web web-scraping web-crawler

使用以下代码通过Python 2.7跟踪网址:URL whose data I Want

from bs4 import BeautifulSoup  
import requests  
import urlparse  
import re
import urllib  
import urllib2  
URL=[URL whose data I Want][1]  
page = requests.get(URL)  
soup = BeautifulSoup(page.content,"html.parser")  
fo = open("new.html", "wb")  
fo.write(str(soup))  
fo.close()  

提供类似observed的输出虽然预计会提供我在浏览器上看到的输出(前面提到的URL)。
1.如何获得预期数据?
2.有人可以弄清楚为什么会这样,因为URL是相同的但它没有得到相同的数据?谢谢

0 个答案:

没有答案