Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 40 for host (0.027 sec.)
18.5.1. 基底イベントループ — Python 3.6.5 ドキュメント 12481
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... tEventLoop. create_connection ( protocol_factory , host=None , port=None , * , ssl=None , family=0 , proto ... 0 , flags=0 , sock=None , local_addr=None , server_hostname=None ) ¶ インターネット host および port へのス ... します: ソケットファミリ AF_INET または AF_INET6 は host (または指定されていれば family ) に依存し、ソケット ... す。 参考 SSL/TLS セキュリティについての考察 server_hostname は ssl 指定時のみ使用し、対象サーバーの証明書に ...
https://man.plustar.jp/python/library/asyncio-eventloop.html - [similar]
18.1. socket --- 低水準ネットワークインターフェイス — Python 3.6.5 ドキュメント 11810
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ようになりました。 AF_INET アドレスファミリーには、 (host, port) ペアがアドレスとして利用されます。 host はホ ... rt は整数です。 AF_INET6 アドレスファミリーでは、 (host, port, flowinfo, scopeid) の4 要素のタプルが利用さ ... esses, two special forms are accepted instead of a host address: the empty string represents INADDR_ANY , ... IPv6 with your Python programs. IPv4/v6ソケットの host 部にホスト名を指定すると、処理結果が一定ではない場 ...
https://man.plustar.jp/python/library/socket.html - [similar]
21.17. smtplib --- SMTP プロトコルクライアント — Python 3.6.5 ドキュメント 10110
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... xtensions)を調べてください。 class smtplib. SMTP ( host='' , port=0 , local_hostname=None , [ timeout , ] ... oire of SMTP and ESMTP operations. If the optional host and port parameters are given, the SMTP connect() ... ameters during initialization. If specified, local_hostname is used as the FQDN of the local host in the H ... ELO/EHLO command. Otherwise, the local hostname is found using socket.getfqdn() . If the conne ...
https://man.plustar.jp/python/library/smtplib.html - [similar]
21.13. ftplib --- FTPプロトコルクライアント — Python 3.6.5 ドキュメント 9876
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... TP >>> ftp = FTP ( 'ftp.debian.org' ) # connect to host, default port >>> ftp . login () # user anonymous, ... ルは以下の項目を定義しています: class ftplib. FTP ( host='' , user='' , passwd='' , acct='' , timeout=None ... e ) ¶ Return a new instance of the FTP class. When host is given, the method call connect(host) is made. W ... etting will be used). source_address is a 2-tuple (host, port) for the socket to bind to as its source add ...
https://man.plustar.jp/python/library/ftplib.html - [similar]
21.12. http.client --- HTTP プロトコルクライアント — Python 3.6.5 ドキュメント 9876
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 提供しています: class http.client. HTTPConnection ( host , port=None , [ timeout , ] source_address=None ) ... す。ポート番号を指定しなかった場合、ホスト名文字列が host:port の形式であれば、ホスト名からポート番号を導き、 ... が利用されます。)オプションの引数 source_address を (host, port) という形式のタプルにすると HTTP 接続の接続元 ... トされません。 class http.client. HTTPSConnection ( host , port=None , key_file=None , cert_file=None , [ t ...
https://man.plustar.jp/python/library/http.client.html - [similar]
21.6. urllib.request --- URL を開くための拡張可能なライブラリ — Python 3.6.5 ド... 9766
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... equest ( url , data=None , headers={} , origin_req_host=None , unverifiable=False , method=None ) ¶ このク ... を正しく扱いたい場合にのみ関係してきます: origin_req_host は、 RFC 2965 で定義されている元のトランザクション ... におけるリクエストホスト (request-host of the origin transaction) です。デフォルトの値は ... http.cookiejar.request_host(self) です。この値は、ユーザーによって開始された元 ...
https://man.plustar.jp/python/library/urllib.request.html - [similar]
14.3. netrc --- netrc ファイルの処理 — Python 3.6.5 ドキュメント 9642
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 下のメソッドを持っています: netrc. authenticators ( host ) ¶ host の認証情報として、三要素のタプル (login, ... account, password) を返します。与えられた host に対するエントリが netrc ファイルにない場合、'defa ... ult' エントリに関連付けられたタプルが返されます。host に対応するエントリがなく、default エントリもない場 ... 下の public なインスタンス変数を持っています: netrc. hosts ¶ ホスト名を (login, account, password) からなるタ ...
https://man.plustar.jp/python/library/netrc.html - [similar]
21.21. socketserver --- ネットワークサーバのフレームワーク — Python 3.6.5 ドキ... 9642
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... elf . data . upper ()) if __name__ == "__main__" : HOST , PORT = "localhost" , 9999 # Create the server, b ... inding to localhost on port 9999 with socketserver . TCPServer (( HOST ... 。 クライアントサイドの例: import socket import sys HOST , PORT = "localhost" , 9999 data = " " . join ( sy ... Connect to server and send data sock . connect (( HOST , PORT )) sock . sendall ( bytes ( data + " \n " , ...
https://man.plustar.jp/python/library/socketserver.html - [similar]
16.8. logging.handlers --- ロギングハンドラ — Python 3.6.5 ドキュメント 8862
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... を用います。 class logging.handlers. SocketHandler ( host , port ) ¶ アドレスが host および port で与えられた ... port に None を指定すると、Unix ドメインソケットが host 値を用いて作られます - そうでない場合は TCP ソケッ ... ています。 class logging.handlers. DatagramHandler ( host , port ) ¶ アドレスが host および port で与えられた ... a Unix domain socket is created using the value in host - otherwise, a UDP socket is created. emit ( ) ¶ レ ...
https://man.plustar.jp/python/library/logging.handlers.html - [similar]
18.6. asyncore --- 非同期ソケットハンドラ — Python 3.6.5 ドキュメント 8518
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... t ( asyncore . dispatcher ): def __init__ ( self , host , path ): asyncore . dispatcher . __init__ ( self ... ) self . create_socket () self . connect ( ( host , 80 ) ) self . buffer = bytes ( 'GET %s HTTP/1.0 ... \r\n Host: %s \r\n\r\n ' % ( path , host ), 'ascii' ) def ha ... r ( asyncore . dispatcher ): def __init__ ( self , host , port ): asyncore . dispatcher . __init__ ( self ...
https://man.plustar.jp/python/library/asyncore.html - [similar]
PREV 1 2 3 4 NEXT