Python教程

python获取script里的内容

本文主要是介绍python获取script里的内容,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
import requests
from bs4 import BeautifulSoup
 
url1 = "https://www.zzlian.com/33.html"
html = requests.get(url1).content
html=html.decode('utf-8') # python3
soup = BeautifulSoup(html, "html.parser")
a = soup.select('script[type="application/ld+json"]')
#查找<script[type="application/ld+json"]> 里面的内容,因为这个地址上面有多个相同的,只需要获取对应的下标内容即可。
 
t = list(a)[0].text
print(r)

 

这篇关于python获取script里的内容的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!