我在python 3中使用beautifulsoup但是" html.parser"不给我网站的所有代码

时间:2016-09-06 17:44:33

标签: python-3.x web-scraping beautifulsoup

我的代码是

import urllib
import urllib.request

from bs4 import BeautifulSoup    
fed = "https://www.fedex.com/apps/fedextrack/?action=track&tracknumbers=870915037012296&cntry_code=us&wsch=true"

show = urllib.request.urlopen(fed)
soup = BeautifulSoup(show,"html.parser")

print(soup)

我正在尝试从fedex和status获取传递地址。但此代码未获取我的URL的所有数据

1 个答案:

答案 0 :(得分:0)

为什么不直接使用Fedex SOAP API。有一个Python包装器 - python-fedex

可以找到如何跟踪包的示例here