Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 62 for server (0.026 sec.)
21.21. socketserver --- ネットワークサーバのフレームワーク — Python 3.6.5 ドキ... 12310
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... インターネットプロトコルとサポート » 21.21. socketserver --- ネットワークサーバのフレームワーク ¶ ソースコー ... ド: Lib/socketserver.py socketserver モジュールはネットワークサーバを実 ... 基本的な具象サーバクラスが4つあります: class socketserver. TCPServer ( server_address , RequestHandlerClass ... continuous streams of data between the client and server. If bind_and_activate is true, the constructor aut ...
https://man.plustar.jp/python/library/socketserver.html - [similar]
21.27. xmlrpc.server --- 基本的なXML-RPCサーバー — Python 3.6.5 ドキュメント 11978
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... インターネットプロトコルとサポート » 21.27. xmlrpc.server --- 基本的なXML-RPCサーバー ¶ ソースコード: Lib/xm ... lrpc/server.py xmlrpc.server モジュールはPythonで記述された基本 ... ます。サーバーはスタンドアロンであるか、 SimpleXMLRPCServer を使うか、 CGIXMLRPCRequestHandler を使って CGI 環 ... 境に組み込まれるかの、いずれかです。 警告 xmlrpc.server モジュールは悪意を持って構築されたデータに対して安 ...
https://man.plustar.jp/python/library/xmlrpc.server.html - [similar]
21.26. xmlrpc.client --- XML-RPC クライアントアクセス — Python 3.6.5 ドキュメン... 11602
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... lient can call methods with parameters on a remote server (the server is named by a URI) and get back struct ... クを全てデフォルトで行います。 class xmlrpc.client. ServerProxy ( uri , transport=None , encoding=None , verb ... で変更: use_builtin_types フラグが追加されました。 A ServerProxy instance is an object that manages communicat ... ion with a remote XML-RPC server. The required first argument is a URI (Uniform Res ...
https://man.plustar.jp/python/library/xmlrpc.client.html - [similar]
21.22. http.server --- HTTP サーバ — Python 3.6.5 ドキュメント 11559
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... . インターネットプロトコルとサポート » 21.22. http.server --- HTTP サーバ ¶ ソースコード: Lib/http/server.py ... を実装するためのクラスを提供しています。 クラス HTTPServer は socketserver.TCPServer のサブクラスです。 HTTPS ... させるためのコードは以下のようになります: def run ( server_class = HTTPServer , handler_class = BaseHTTPReque ... stHandler ): server_address = ( '' , 8000 ) httpd = server_class ( ser ...
https://man.plustar.jp/python/library/http.server.html - [similar]
21.4. wsgiref --- WSGI ユーティリティとリファレンス実装 — Python 3.6.5 ドキュメ... 10952
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ef --- WSGI ユーティリティとリファレンス実装 ¶ Web Server Gateway Interface (WSGI) は、Web サーバソフトウェア ... 追加します。そのようなパラメータとして HTTP_HOST 、 SERVER_NAME 、 SERVER_PORT 、 REQUEST_METHOD 、 SCRIPT_NA ... import setup_testing_defaults from wsgiref.simple_server import make_server # A relatively simple WSGI appl ... value in environ . items ()] return ret with make_server ( '' , 8000 , simple_app ) as httpd : print ( "Ser ...
https://man.plustar.jp/python/library/wsgiref.html - [similar]
18.2. ssl --- ソケットオブジェクトに対する TLS/SSL ラッパー — Python 3.6.5 ドキ... 9247
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... rap_socket ( sock , keyfile=None , certfile=None , server_side=False , cert_reqs=CERT_NONE , ssl_version={se ... いてのより詳しい情報は、 証明書 を参照してください。 server_side 引数は真偽値で、このソケットがサーバサイドとク ... バのバージョンに接続できるかを示しています: client / server SSLv2 SSLv3 TLS [3] TLSv1 TLSv1.1 TLSv1.2 SSLv2 ye ... ます。 ssl. create_default_context ( purpose=Purpose.SERVER_AUTH , cafile=None , capath=None , cadata=None ) ¶ ...
https://man.plustar.jp/python/library/ssl.html - [similar]
21.16. nntplib --- NNTP プロトコルクライアント — Python 3.6.5 ドキュメント 8351
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... NNTP object, representing a connection to the NNTP server running on host host , listening at port port . An ... used to identify and authenticate the user to the server. If the optional flag readermode is true, then a m ... metimes necessary if you are connecting to an NNTP server on the local machine and intend to call reader-spe ... , representing an encrypted connection to the NNTP server running on host host , listening at port port . NN ...
https://man.plustar.jp/python/library/nntplib.html - [similar]
18.5.5. ストリーム (コルーチンベースの API) — Python 3.6.5 ドキュメント 8178
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... の関数は コルーチン です。 coroutine asyncio. start_server ( client_connected_cb , host=None , port=None , * ... ックでソケットサーバーを開始します。戻り値は create_server() と同じです。 client_connected_cb 引数は client_r ... 残りの引数は protocol_factory を除きすべて create_server() の通常の引数です; 最も一般的なのは位置引数 host ... 利用できる環境: UNIX。 coroutine asyncio. start_unix_server ( client_connected_cb , path=None , * , loop=None ...
https://man.plustar.jp/python/library/asyncio-stream.html - [similar]
21.12. http.client --- HTTP プロトコルクライアント — Python 3.6.5 ドキュメント 7773
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ong line is received in the HTTP protocol from the server. exception http.client. RemoteDisconnected ¶ A sub ... to the HTTP protocol version 1.1. Unless the HTTP server is known to handle HTTP 1.1, the caller must eithe ... the CONNECT request, not the address of the proxy server). ヘッダのパラメータは CONNECT リクエストで送信する ... ます。 For example, to tunnel through a HTTPS proxy server running locally on port 8080, we would pass the ad ...
https://man.plustar.jp/python/library/http.client.html - [similar]
urllib パッケージを使ってインターネット上のリソースを取得するには — Python 3.6.... 7730
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » urll ... .parse import urllib.request url = 'http://www.someserver.com/cgi-bin/register.cgi' values = { 'name' : 'Mic ... .parse import urllib.request url = 'http://www.someserver.com/cgi-bin/register.cgi' user_agent = 'Mozilla/5. ... = urllib . request . Request ( 'http://www.pretend_server.org' ) >>> try : urllib . request . urlopen ( req ... 9番台のエラーコードのみを見るだけですみます。 http.server.BaseHTTPRequestHandler.responses is a useful dicti ...
https://man.plustar.jp/python/howto/urllib2.html - [similar]
PREV 1 2 3 4 5 6 7 NEXT