Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 52 for send (0.027 sec.)
19.1.8. email: 使用例 — Python 3.6.5 ドキュメント 12784
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... いても扱います。 First, let's see how to create and send a simple text message (both the text content and t ... icode characters): # Import smtplib for the actual sending function import smtplib # Import the email modu ... e () msg . set_content ( fp . read ()) # me == the sender's email address # you == the recipient's email a ... textfile msg [ 'From' ] = me msg [ 'To' ] = you # Send the message via our own SMTP server. s = smtplib . ...
https://man.plustar.jp/python/library/email.examples.html - [similar]
21.16. nntplib --- NNTP プロトコルクライアント — Python 3.6.5 ドキュメント 12426
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... in ( user=None , password=None , usenetrc=True ) ¶ Send AUTHINFO commands with the user name and password. ... 3.2 で追加. NNTP. starttls ( ssl_context=None ) ¶ Send a STARTTLS command. This will enable encryption on ... ださい)。 NNTP. newgroups ( date , * , file=None ) ¶ Send a NEWGROUPS command. The date argument should be a ... ) NNTP. newnews ( group , date , * , file=None ) ¶ Send a NEWNEWS command. Here, group is a group name or ...
https://man.plustar.jp/python/library/nntplib.html - [similar]
21.22. http.server --- HTTP サーバ — Python 3.6.5 ドキュメント 12052
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ¶ Specifies a format string that should be used by send_error() method for building an error response to t ... responses based on the status code that passed to send_error() . error_content_type ¶ エラーレスポンスをク ... する応答に、正確な値を持つ Content-Length ヘッダを ( send_header() を使って) 含め なければなりません 。以前の ... and longmessage as the explain key. It is used by send_response_only() and send_error() methods. BaseHTTP ...
https://man.plustar.jp/python/library/http.server.html - [similar]
33.1. formatter --- 汎用の出力書式化機構 — Python 3.6.5 ドキュメント 10843
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 的な段落は中断しません。引数とキーワードは writer の send_line_break() メソッドに渡されます。 formatter. add ... ベルの値として直接使われます。ラベルの値は writer の send_label_data() メソッドの唯一の引数として渡されます。 ... 合としても、スタックとしても解釈され得ます。 writer. send_line_break ( ) ¶ 現在の行を改行します。 writer. se ... 行う必要がある場合、このメソッドの呼び出しに先立って send_line_break() の呼び出しを受ける必要あります; このメ ...
https://man.plustar.jp/python/library/formatter.html - [similar]
ソケットプログラミング HOWTO — Python 3.6.5 ドキュメント 9006
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » ソケ ... い。 さて、コミュニケーションに使う動詞は二組ある。 send と recv を使うこともできるし、クライアントソケット ... 可能性がある。 さあ、ソケットの主要な難関に進もう - send と recv はネットワークバッファに働きかけるものだ。 ... 際に処理してくれているとは限らない。一般的に言って、 send はバッファが埋まるまで、 recv はバッファが空になる ... ことを認識する必要がある。もう一度言おう: ソケットの send や recv が 0 バイト処理で返ってきたなら、その接続は ...
https://man.plustar.jp/python/howto/sockets.html - [similar]
18.6. asyncore --- 非同期ソケットハンドラ — Python 3.6.5 ドキュメント 8886
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... します。例: def handle_write ( self ): sent = self . send ( self . buffer ) self . buffer = self . buffer [ ... ト、2番目の値がポート番号であるタプルを指定します。 send ( data ) ¶ リモート側の端点に data を送出します。 ... にクローズされます。 class asyncore. dispatcher_with_send ¶ dispatcher のサブクラスで、シンプルなバッファされ ... r ) > 0 ) def handle_write ( self ): sent = self . send ( self . buffer ) self . buffer = self . buffer [ ...
https://man.plustar.jp/python/library/asyncore.html - [similar]
17.2. multiprocessing --- プロセスベースの並列処理 — Python 3.6.5 ドキュメント 8408
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ssing import Process , Pipe def f ( conn ): conn . send ([ 42 , None , 'hello' ]) conn . close () if __nam ... 関数から返されます。各コネクションオブジェクトには、 send() 、 recv() 、その他のメソッドがあります。2つのプロ ... とクライアント . class multiprocessing. Connection ¶ send ( obj ) ¶ コネクションの相手側へ recv() を使用して ... ことがあります。 recv ( ) ¶ コネクションの相手側から send() を使用して送られたオブジェクトを返します。 何か受 ...
https://man.plustar.jp/python/library/multiprocessing.html - [similar]
8.4. collections.abc --- コレクションの抽象基底クラス — Python 3.6.5 ドキュメン... 8289
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... eversible Iterable __reversed__ Generator Iterator send , throw close , __iter__ , __next__ Sized __len__ ... , __iter__ Awaitable __await__ Coroutine Awaitable send , throw close AsyncIterable __aiter__ AsyncIterato ... __anext__ __aiter__ AsyncGenerator AsyncIterator asend , athrow aclose , __aiter__ , __anext__ class coll ... bc. Generator ¶ PEP 342 で定義された、イテレータを send() , throw() , close() の各メソッドに拡張するプロト ...
https://man.plustar.jp/python/library/collections.abc.html - [similar]
18.1. socket --- 低水準ネットワークインターフェイス — Python 3.6.5 ドキュメント 8289
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 合、その値は未指定になります。 一部のシステムでは、 sendmsg() と recvmsg() を使用して、プロセス間で AF_UNIX ... ジを受信した場合など、予期しない条件は無視します)。 sendmsg() も参照してください。 import socket , array de ... >>> b3 = bytearray ( b '--------------' ) >>> s1 . send ( b 'Mary had a little lamb' ) 22 >>> s2 . recvmsg ... ニュアルページ recv(2) を参照してください。 socket. send ( bytes [ , flags ] ) ¶ ソケットにデータを送信しま ...
https://man.plustar.jp/python/library/socket.html - [similar]
18.5.4. Transports and protocols (callback based API) — Python 3.6.5 ドキュメン... 8154
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 18.5.4.1.4. DatagramTransport ¶ DatagramTransport. sendto ( data , addr=None ) ¶ リモートピア addr (トラン ... dows では、このメソッドは terminate() の別名です。 send_signal ( signal ) ¶ サブプロセスにシグナル signal ... を送信します。 subprocess.Popen.send_signal() と同じです。 terminate ( ) ¶ サブプロセス ... ta received: {!r} ' . format ( message )) print ( 'Send: {!r} ' . format ( message )) self . transport . w ...
https://man.plustar.jp/python/library/asyncio-protocol.html - [similar]
PREV 1 2 3 4 5 6 NEXT