python3:urllib.request 的主要函式說明
內容的主要來源為:
https://docs.python.org/3/library/urllib.request.html#module-urllib.request
The urllib.request module defines functions and classes which help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more.
urllib.request.urlopen(url, data=None, [timeout, ]*, cafile=None, capath=None, cadefault=False, context=None)
url, which can be either a string or a Request object.
url 既可以是一個string, 也可以是一個request物件
data must be an object specifying additional data to be sent to the server, or None if no such data is needed. See Request for details
data 必須是指定傳送給sever的特定附加資料, 當這個資料不需要,則data=None
函式返回的是什麼?
This function always returns an object which can work as a context manager and has methods such as
這個函式總是返回一個可以作為上下文的管理器.並有如下的方法:
例項如下:
from urllib import request
if __name__ == '__main__':
url = 'http://www.baidu.com/'
response = request.urlopen(url)
html = response.read().decode('utf-8')
print(html)
其它幾個函式的例項如下(from ipython)
相關文章
- Vector容器主要函式說明函式
- Python 閉包函式說明Python函式
- PHP 風險函式說明PHP函式
- scapy函式 IP() 使用說明函式
- jQuery - 函式 $.ajaxSetup 的說明和使用jQuery函式
- Java @FunctionInterface函式式介面使用說明JavaFunction函式
- python中encode和decode函式說明Python函式
- apolloxlua標準庫require函式說明UI函式
- Python3中的函式 大全Python函式
- tf.gfile函式和gfile.MakeDirs(FLAGS.train_dir)函式的詳細說明函式AI
- MySQL EXPLAIN命令的主要專案說明MySqlAI
- 【彙總】EMQX 函式API、安裝與使用說明MQ函式API
- 舉例說明js立即執行函式的寫法有哪些?JS函式
- Python3 range() 函式用法Python函式
- python3 堆相關函式的使用Python函式
- Python3 函式是什麼Python函式
- 說說 Spring 支援的 AspectJ 切點函式Spring函式
- python3 筆記15.通過range()函式來了解函式的作用Python筆記函式
- 【cartographer_ros】七: 主要配置引數說明ROS
- css樣式說明介紹CSS
- 帝國CMS動態頁分頁函式page1解析說明函式
- python3 筆記12.字串支援的函式Python筆記字串函式
- Python3常用函式速查【持續更新】Python函式
- Python3學習(18)--偏函式(Partial)Python函式
- 說說 Vue.js 中的 functional 函式化元件Vue.jsFunction函式元件
- 龍哥量化:通達信軟體的公式編輯器專業財務函式說明專業財務函式介紹公式函式
- Python3之遞迴函式簡單示例Python遞迴函式
- Python那麼火,到底能用來做什麼?我們來說說Python3的主要應用Python
- 『無為則無心』Python日誌 — 69、補充:logging.basicConfig()函式說明Python函式
- 說說在 Python 中如何測試函式Python函式
- 胡說-JavaScript函式型別JavaScript函式型別
- MySQL數學函式簡明總結MySql函式
- python3 筆記16.構建函式defPython筆記函式
- 說明
- 說說在 Python 中如何向函式傳參Python函式
- python3 筆記14.列表元組字典支援的函式Python筆記函式
- winscp操作說明,winscp操作說明的詳細解讀
- 【轉載】正規表示式解釋說明