python3的urllib2報錯問題解決方法
python
urlib2
相容問題
在python3中,將urllib和urllib2合併了,所以在使用urllib2的地方改成urllib.request即可。
示例如下
-
import urllib2.request
- url = `http://apis.baidu.com/heweather/weather/free?city=beijing`
- req = urllib.request.Request(url)
- req.add_header(“apikey”,“33481140591d83456d6486e55fb00686”)
- resp = urllib.request.urlopen(req)
- content = resp.read()
-
if(content):
- print(content)
-
-
改例是在通過百度提供的api獲取城市的天氣。
相關文章
- 解決 Inkscape 報錯 Duplicate 問題
- 設定autotrace的報錯問題解決
- 解決eslint空格報錯等問題EsLint
- 解決cookies儲存中文報錯問題Cookie
- 安裝vue/cli報錯問題解決Vue
- 解決MMM啟動監控報錯的問題
- 解決vue使用Sass時候的報錯問題Vue
- 解決mysql_query()報錯的相關問題MySql
- solrcloud頁面顯示報錯Cannot load analyzer問題的解決方法SolrCloud
- 幾個報錯的解決方法
- Oracle 常見的錯誤問題及解決方法Oracle
- 使用API28報錯問題及解決API
- jquery-weui微信支付報錯問題解決jQueryUI
- matplotlib中文報錯問題及解決方案
- mac 下PyCharm執行報錯問題解決MacPyCharm
- mydumper執行報錯遇到缺失libssl.so.1.1問題的解決方法
- 一個安裝rpm格式軟體報錯問題的解決方法(轉)
- Delta Magisk root後解決adb的報錯問題
- hive使用報錯解決方法Hive
- 遇到問題的解決方法
- 豐田汽車問題解決方法(A3報告)
- vm安裝ubuntu後,update報錯問題解決Ubuntu
- 記錄解決HttpServletResponse在引數報錯的問題HTTPServlet
- dbfread報錯ValueError錯誤解決方法Error
- SERVICE問題解決方法
- ***XAMPP:報錯Unabletoloaddynamiclibrary的解決方法
- **PHPNotice:Undefinedindex:…問題的解決方法PHPUndefinedIndex
- Uncaught Error: Bootstrap‘s JavaScript requires jQuery報錯問題解決ErrorbootJavaScriptUIjQuery
- 解決element---el-dialog--關閉報錯問題
- 解決 ngrok 的 Domain 錯誤問題AI
- 10G RAC DBCA報錯 ORA-27504問題的解決
- mongoDB的db.shutdownServer()報錯的解決方法MongoDBServer
- 解決問題的方法和途徑-問題管理
- ceph叢集安裝報錯解決方法
- RAC: SRVCTL and VIPCA 命令報錯解決方法PCA
- MRTG生成首頁報錯解決方法
- DBMS_METADATA報錯解決方法
- 安裝psutil模組報錯的解決方法