Python爬蟲教程-08-post介紹(百度翻譯)(下)

來源:互聯網
上載者:User

標籤:imp   base   com   baidu   構造   read   檔案   input   enc   

Python爬蟲教程-08-post介紹(下)

為了更多的佈建要求資訊,單純的通過urlopen已經不太能滿足需求,此時需要使用request.Request類

構造Request 執行個體
req = request.Request(url=baseurl,data=data,headers=header)
發出請求
rsp = request.urlopen(req)
檔案:

案例v8檔案:https://xpwi.github.io/py/py%E7%88%AC%E8%99%AB/py08post2.py

# 案例v7百度翻譯# 使用Requestfrom urllib import request,parseimport jsonbaseurl = ‘http://fanyi.baidu.com/sug‘keyword = input("請輸入需要翻譯的內容:")data = {    ‘kw‘: keyword}# 需要使用parse模組對data進行編碼data = parse.urlencode(data)data = data.encode(‘utf-8‘)header = {    ‘Content-Length‘:len(data)}# 構造Request執行個體req = request.Request(url=baseurl,data=data,headers=header)# 發出請求rsp = request.urlopen(req)json_data = rsp.read().decode()# 把json字串轉換為字典json_data = json.loads(json_data)for item in json_data[‘data‘]:    # if item[‘k‘] == keyword:        print(item[‘k‘], ": ", item[‘v‘])

拜拜

- 本筆記不允許任何個人和組織轉載

Python爬蟲教程-08-post介紹(百度翻譯)(下)

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.