- 帖子
- 1
- 精华
- 0
- 积分
- 5
- 阅读权限
- 10
- 注册时间
- 2018-1-27
- 最后登录
- 2018-1-27
|
http://m.data.eastmoney.com/xg/xgsg.html
准备做个检测新股申购的iphone widget(下滑屏幕顶就出来的那个),widget方面pytonista里面有案例应该不难
目标网址:
http://m.data.eastmoney.com/x...
网页源代码分析
json 内容 搜 defaultData
另一个是 div clasa= day-list
试了两个返回都是空
下面是代码
import requests
import json
import html5lib
from bs4 import BeautifulSoup as BS
headers = {'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36'}
url = 'http://m.data.eastmoney.com/x...'
r = requests.get(url, headers = headers)
r.encoding = 'UTF-8'
soup = BS(r.text, 'html5lib')
div = soup.find_all('div day-list') |
|