Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 21 - 30 of about 40 for urllib (0.064 sec.)
17.4. concurrent.futures -- 並列タスク実行 — Python 3.6.5 ドキュメント 7067
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... olExecutor の例 ¶ import concurrent.futures import urllib.request URLS = [ 'http://www.foxnews.com/' , 'http ... and contents def load_url ( url , timeout ): with urllib . request . urlopen ( url , timeout = timeout ) as ...
https://man.plustar.jp/python/library/concurrent.futures.html - [similar]
10. 標準ライブラリミニツアー — Python 3.6.5 ドキュメント 7067
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python チュートリア ... 2つのモジュールは、 URL からデータを取得するための urllib.request と、メールを送るための smtplib です: >>> f ... rom urllib.request import urlopen >>> with urlopen ( 'http:// ...
https://man.plustar.jp/python/tutorial/stdlib.html - [similar]
10.2. functools --- 高階関数と呼び出し可能オブジェクトの操作 — Python 3.6.5 ド... 7021
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... .python.org/dev/peps/pep- %04d /' % num try : with urllib . request . urlopen ( resource ) as s : return s . ... read () except urllib . error . HTTPError : return 'Not Found' >>> for n ...
https://man.plustar.jp/python/library/functools.html - [similar]
27.7. tracemalloc --- メモリ割り当ての追跡 — Python 3.6.5 ドキュメント 7021
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 143 ), average = 557 B / usr / lib / python3 .4 / urllib / parse . py : 476 : size = 71.8 KiB ( + 71.8 KiB ... che.py:127: 95.4 KiB lines = fp . readlines () #7: urllib/parse.py:476: 71.8 KiB for a in _hexdig for b in _ ...
https://man.plustar.jp/python/library/tracemalloc.html - [similar]
26.5. unittest.mock --- モックオブジェクトライブラリ — Python 3.6.5 ドキュメン... 7021
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ', 'assert_has_calls', 'attach_mock', ... >>> from urllib import request >>> dir ( Mock ( spec = request )) ... mock に対してもアクセスできなくなります: >>> from urllib import request >>> mock = Mock ( spec = request . ... を使うことができます。 autospec の利用例: >>> from urllib import request >>> patcher = patch ( '__main__.req ... が適用された mock を直接作る方法もあります: >>> from urllib import request >>> mock_request = create_autospec ...
https://man.plustar.jp/python/library/unittest.mock.html - [similar]
28.3. venv --- 仮想環境の作成 — Python 3.6.5 ドキュメント 7021
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... PIPE import sys from threading import Thread from urllib.parse import urlparse from urllib.request import u ...
https://man.plustar.jp/python/library/venv.html - [similar]
What's New in Python 2.6 — Python 3.6.5 ドキュメント 7021
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... で、与えた引数が持つ .close() を呼び出します: import urllib , sys from contextlib import closing with closing ... ( urllib . urlopen ( 'http://www.yahoo.com' )) as f : for l ... ource ( IOError , errno = errno . ETIMEDOUT ): f = urllib . urlopen ( 'https://sf.net' ) ... 最後に、 check_ ... した。 ( bpo-1513695 ) 省略可能パラメータ timeout が urllib.urlopen() 関数と urllib.ftpwrapper クラスのコンスト ...
https://man.plustar.jp/python/whatsnew/2.6.html - [similar]
What's New in Python 2.5 — Python 3.6.5 ドキュメント 6942
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... 与えた引数が持つ object.close を呼び出します: import urllib , sys from contextlib import closing with closing ... ( urllib . urlopen ( 'http://www.yahoo.com' )) as f : for l ... Tree as ET tree = ET . parse ( 'ex-1.xml' ) feed = urllib . urlopen ( 'http://planet.python.org/rss10.xml' ) ...
https://man.plustar.jp/python/whatsnew/2.5.html - [similar]
What's New In Python 3.0 — Python 3.6.5 ドキュメント 6942
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... n 2.6 以降では turtle の機能は大幅に向上しました。 urllib ( urllib , urllib2 , urlparse , robotparse )。 xml ...
https://man.plustar.jp/python/whatsnew/3.0.html - [similar]
21.13. ftplib --- FTPプロトコルクライアント — Python 3.6.5 ドキュメント 6911
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... g other FTP servers. It is also used by the module urllib.request to handle URLs that use FTP. For more info ...
https://man.plustar.jp/python/library/ftplib.html - [similar]
PREV 1 2 3 4 NEXT