Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 11 - 20 of about 42 for request (0.044 sec.)
18.7. asynchat --- 非同期ソケットコマンド/レスポンスハンドラ — Python 3.6.5 ド... 7618
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 部です。Webサーバは、クライアントからの接続毎に http_request_handler オブジェクトを作成します。最初はチャネルの ... のデータを無視するようにしています。この後、 handle_request() が呼び出されます。 import asynchat class http_re ... True self . set_terminator ( None ) self . handle_request () elif not self . handling : self . set_terminato ... handling = True self . ibuffer = [] self . handle_request () 関連キーワード: self , async , chat , data , as ...
https://man.plustar.jp/python/library/asynchat.html - [similar]
21. インターネットプロトコルとサポート — Python 3.6.5 ドキュメント 7618
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... .5. urllib --- URL を扱うモジュール群 21.6. urllib.request --- URL を開くための拡張可能なライブラリ 21.6.1. R ... 21.6.24. レガシーインターフェース 21.6.25. urllib.request の制限事項 21.7. urllib.response --- urllib で使用 ... .8.4. URL のクオート 21.9. urllib.error --- urllib.request が投げる例外 21.10. urllib.robotparser --- robots. ... に関するノート 21.21.2. Serverオブジェクト 21.21.3. Request Handler Objects 21.21.4. 使用例 21.21.4.1. sockets ...
https://man.plustar.jp/python/library/internet.html - [similar]
21.9. urllib.error --- urllib.request が投げる例外 — Python 3.6.5 ドキュメント 7618
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... プロトコルとサポート » 21.9. urllib.error --- urllib.request が投げる例外 ¶ ソースコード: Lib/urllib/error.py u ... rllib.error は urllib.request によって投げられる例外を定義しています。基底クラス ... ictionary of codes as found in http.server.BaseHTTPRequestHandler.responses . reason ¶ これは通常、このエラー ...
https://man.plustar.jp/python/library/urllib.error.html - [similar]
What's New In Python 3.6 — Python 3.6.5 ドキュメント 7509
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... ss p = 0x7fbcd41666f8 : API 'o' 4 bytes originally requested The 7 pad bytes at p - 7 are FORBIDDENBYTE , as ... eimes in bpo-27928 .) http.client ¶ HTTPConnection.request() and endheaders() both now support chunked encodi ... ng request bodies. (Contributed by Demian Brecht and Rolf Kra ... ivoda in bpo-26404 .) The wfile attribute of StreamRequestHandler classes now implements the io.BufferedIOBas ...
https://man.plustar.jp/python/whatsnew/3.6.html - [similar]
21.4. wsgiref --- WSGI ユーティリティとリファレンス実装 — Python 3.6.5 ドキュメ... 7432
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... し、そうでなければ "http" を返します。 wsgiref.util. request_uri ( environ , include_query=True ) ¶ リクエスト ... _INFO と QUERY_STRING 変数が無視されることを除けば request_uri() に似ています。結果はリクエストによって指定さ ... タとして HTTP_HOST 、 SERVER_NAME 、 SERVER_PORT 、 REQUEST_METHOD 、 SCRIPT_NAME 、 PATH_INFO 、そして PEP 33 ... app , server_class=WSGIServer , handler_class=WSGIRequestHandler ) ¶ host と port 上で待機し、 app へのコネク ...
https://man.plustar.jp/python/library/wsgiref.html - [similar]
35.9. fcntl --- fcntl および ioctl システムコール — Python 3.6.5 ドキュメント 7246
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 場合、 OSError が送出されます。 fcntl. ioctl ( fd , request , arg=0 , mutate_flag=True ) ¶ この関数は fcntl() ... 扱いがより複雑であるところが異なります。 パラメータ request は32ビットに収まる値に制限されます。 request 引数と ...
https://man.plustar.jp/python/library/fcntl.html - [similar]
21.27. xmlrpc.server --- 基本的なXML-RPCサーバー — Python 3.6.5 ドキュメント 7246
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ンであるか、 SimpleXMLRPCServer を使うか、 CGIXMLRPCRequestHandler を使って CGI 環境に組み込まれるかの、いずれ ... 。 class xmlrpc.server. SimpleXMLRPCServer ( addr , requestHandler=SimpleXMLRPCRequestHandler , logRequests=Tr ... ばれる関数の登録のためのメソッドを提供します。 引数 requestHandler にはリクエストハンドラーインスタンスのファク ... トリーを設定します。 デフォルトは SimpleXMLRPCRequestHandler です。 引数 addr と requestHandler は socke ...
https://man.plustar.jp/python/library/xmlrpc.server.html - [similar]
What's New In Python 3.4 — Python 3.6.5 ドキュメント 7246
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... ed by Ethan Furman in bpo-19030 .) urllib ¶ urllib.request が新規クラス DataHandler を介して data: URL をサポ ... (Contributed by Mathias Panzenböck in bpo-16423 .) Request クラスで使われる HTTP メソッドを、サブクラスで met ... ストラクタに渡されたものが設定されるだけだった。---) Request オブジェクトは今では再利用可能です: full_url あるい ... パティが更新されます。このことによって今や、例えば、 Request オブジェクトを、異なる data 引数での OpenerDirecto ...
https://man.plustar.jp/python/whatsnew/3.4.html - [similar]
28.3. venv --- 仮想環境の作成 — Python 3.6.5 ドキュメント 7169
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... read from urllib.parse import urlparse from urllib.request import urlretrieve import venv class ExtendedEnvBu ... e information for the virtual environment creation request being processed. """ os . environ [ 'VIRTUAL_ENV' ... e information for the virtual environment creation request being processed. """ url = 'https://bitbucket.org/ ... e information for the virtual environment creation request being processed. """ url = 'https://raw.github.com ...
https://man.plustar.jp/python/library/venv.html - [similar]
Pythonモジュール索引 — Python 3.6.5 ドキュメント 7169
ナビゲーション 索引 モジュール | Python » 3.6.5 ドキュメント » Pythonモジュール索引 _ | a | b | ... management (cookies). http.server HTTP server and request handlers. i imaplib IMAP4 protocol client (require ... ib urllib.error Exception classes raised by urllib.request. urllib.parse Parse URLs into or assemble them fro ... m components. urllib.request Extensible library for opening URLs. urllib.respon ...
https://man.plustar.jp/python/py-modindex.html - [similar]
PREV 1 2 3 4 5 NEXT