urllib製作活字典

2021-09-04 15:15:26 字數 816 閱讀 4978

from urllib import request,parse

import json

url=

""headers =

word=

input

("輸入:"

)data=

#轉換提交的內容

data_str=parse.urlencode(data)

#封裝好url

req=request.request(url=url,headers=headers,data=

bytes

(data_str,encoding=

"utf-8"))

#獲取網頁內容 是乙個json格式

json_html=request.urlopen(req)

.read(

).decode(

"utf-8"

)#轉換json

html_dict=json.loads(json_html)

#列印檢視

print

(html_dict)

#這裡是 提取內容排一下版

for i in html_dict[

"data"]:

# print(i)

n=0for k,v in i.items():

if n ==0:

print

("單詞:"

,v)else

:print

("解釋:"

,v) n+=

1print

()

後續內容待更新!!!

python3使用urllib模組製作網路爬蟲

urllib urllib模組是python3的url處理包 其中 1 urllib.request主要是開啟和閱讀urls 個人平時主要用的1 開啟對應的url urllib.request.open url 用urllib.request.build opener handler,來偽裝成對應的...

使用Urllib2製作有道翻譯器

1.分析post請求的url 2.檢視form data 其為post請求的資料,將其粘帖到sublime編輯器下,使用正則替換,將其轉化為字典的形式 i python from auto to auto smartresult dict client fanyideskweb salt 15297...

網路程式設計之urllib和urllib2

在可供使用的網路庫中,urllib和urllib2可能是投入產出比最高的兩個。它們讓你能夠通過網路訪問檔案,就像這些檔案位於你的計算機一樣。只需要乙個簡單的函式呼叫,就幾乎可將統一資源定位符 url 可指向的任何動作作為程式的輸入。1.開啟遠端檔案 幾乎可以像開啟本地檔案一樣開啟遠端檔案,差別是只能...