python pyquery 使用總結

2021-09-11 18:29:57 字數 545 閱讀 3745

1.呼叫pyquery庫,使用pq為代號,大家通用

from pyquery import pyquery as pq
2.把網頁初始化

doc = pq(html)
3.過濾自己想要的內容,如果是id的話前面帶#,如果是class的話前面帶.如果是標籤的話直接不用帶

items = doc("#id")

items = doc(".class")

items = doc("tag")

4.把要取的內容一條一條的輸出來,用items屬性

lis = items("li").items()
5.取出a標籤裡的連線還有標題

for li in lis:

print(li("a").attr.href)

print(li("a").text())

6.有時候會呼叫remove,find等命令,大家按照實際情況使用就行

python pyquery 解析html資料

python pyquery 解析html資料 1 windows環境cmd安裝擴充套件 pip install pyquery 3 pyquery 官方文件 api.html 4 from pyquery import pyquery as pq headers d pq url encoding...

使用GraphEdit使用

1 註冊元件。其實乙個filter就是乙個com元件,所以使用之前需要註冊,可以有兩種方法對元件進行註冊。1.直接使用命令。命令列下輸入 regsvr32 hqtlystd.ax 編譯之後你會在工程目錄下的debug中找到hqtlystd.ax,這個就是要用的filter 即可註冊成功。2.vc6....

MySQL使用學習使用 mysql學習使用

1 mysql學習 1 安裝 ubuntu下直接安裝 apt get install mysql server 2 檢查伺服器是否啟動 sudo netstat tap grep mysql,如果啟動成功,出現以下資訊 tcp00localhost.localdomain mysql listen ...