Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 11 - 20 of about 52 for send (0.051 sec.)
21.17. smtplib --- SMTP プロトコルクライアント — Python 3.6.5 ドキュメント 8035
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... used. 普通に使う場合は、初期化と接続を行ってから、 sendmail() と quit() メソッドを呼びます。使用例は先の方 ... ーメッセージが格納されます。 exception smtplib. SMTPSenderRefused ¶ 送信者のアドレスが弾かれたときに送出され ... SMTPResponseException 例外に、 SMTPサーバが弾いた 'sender' アドレスの文字列がセットされます。 exception sm ... ラーは属性 recipients によってアクセス可能で、 SMTP.sendmail() が返す辞書と同じ並びの辞書になっています。 e ...
https://man.plustar.jp/python/library/smtplib.html - [similar]
Logging クックブック — Python 3.6.5 ドキュメント 7915
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Logg ... ith open ( sys . argv [ 1 ], 'rb' ) as f : data_to_send = f . read () HOST = 'localhost' PORT = 9999 s = s ... cting...' ) s . connect (( HOST , PORT )) print ( 'sending config...' ) s . send ( struct . pack ( '>L' , ... len ( data_to_send ))) s . send ( data_to_send ) s . close () print ( ... 't bother with a formatter, since a socket handler sends the event as # an unformatted pickle rootLogger . ...
https://man.plustar.jp/python/howto/logging-cookbook.html - [similar]
6. 式 (expression) — Python 3.6.5 ドキュメント 7915
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 言語リファレ ... 文や組み込み関数 next() など) の結果は None となり、 send() を使用した場合はそのメソッドに渡された値が結果に ... ジェネレータのメソッドの呼び出し元へ直接渡されます。 send() で渡されたあらゆる値と throw() で渡されたあらゆる ... ソッドがあれば渡されます。適切なメソッドがない場合、 send() は AttributeError か TypeError を、 throw() は渡 ... xt() 関数によって暗黙に呼び出されます。 generator. send ( value ) ¶ ジェネレータ関数の内部へ値を "送り"、実 ...
https://man.plustar.jp/python/reference/expressions.html - [similar]
What's New In Python 3.5 — Python 3.6.5 ドキュメント 7557
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... locate() , pread() , pwrite() , read() , readv() , sendfile() , wait3() , wait4() , wait() , waitid() , wa ... グソケットを除く), recv() , recvfrom() , recvmsg() , send() , sendall() , sendmsg() , sendto() ; signal.sigt ... ll and Maciej Szulik in bpo-16914 .) Both the SMTP.sendmail() and SMTP.send_message() methods now support ... ted by Victor Stinner in bpo-22043 .) A new socket.sendfile() method allows sending a file over a socket b ...
https://man.plustar.jp/python/whatsnew/3.5.html - [similar]
Download — Python 3.6.5 ドキュメント 7437
ナビゲーション 索引 モジュール | Python » 3.6.5 ドキュメント » Download Python 3.6.5 Documentati ... r suggestions for the Python documentation, please send email to docs@python.org . 関連キーワード: downloa ...
https://man.plustar.jp/python/download.html - [similar]
18.5.5. ストリーム (コルーチンベースの API) — Python 3.6.5 ドキュメント 7437
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... tion ( '127.0.0.1' , 8888 , loop = loop ) print ( 'Send: %r ' % message ) writer . write ( message . encod ... ceived %r from %r " % ( message , addr )) print ( "Send: %r " % message ) writer . write ( data ) yield fr ... f data from the network loop . call_soon ( wsock . send , 'abc' . encode ()) # Wait for data data = yield ...
https://man.plustar.jp/python/library/asyncio-stream.html - [similar]
18.2. ssl --- ソケットオブジェクトに対する TLS/SSL ラッパー — Python 3.6.5 ドキ... 7437
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... recv() , recv_into() (非ゼロの flags は渡せません) send() , sendall() (非ゼロの flags は渡せません) sendfi ... le() (ただし、 os.sendfile は平文ソケットにのみ使用されます。それ以外の場 ... 合には、 send() が使用されます。) shutdown() SSL(およびTLS)プロト ... ッドを使用して作成されます。 バージョン 3.5 で変更: sendfile() メソッドが追加されました。 バージョン 3.5 で ...
https://man.plustar.jp/python/library/ssl.html - [similar]
Python で Curses プログラミング — Python 3.6.5 ドキュメント 7303
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Pyth ... function, which will determine the terminal type, send any required setup codes to the terminal, and crea ... dow and then clears the window, there's no need to send the original text because they're never visible. I ... addstr ( 0 , 0 , "Enter IM message: (hit Ctrl-G to send)" ) editwin = curses . newwin ( 5 , 30 , 2 , 1 ) r ...
https://man.plustar.jp/python/howto/curses.html - [similar]
18.7. asynchat --- 非同期ソケットコマンド/レスポンスハンドラ — Python 3.6.5 ド... 7303
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... s producer's data by calling its more() method and send the data to the remote endpoint. async_chat. set_t ... set_terminator ( None ) # browsers sometimes over-send self . cgi_data = parse ( self . headers , b "" . ...
https://man.plustar.jp/python/library/asynchat.html - [similar]
21.15. imaplib --- IMAP4 プロトコルクライアント — Python 3.6.5 ドキュメント 7303
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ブジェクトは IMAP4.read() , IMAP4.readline() , IMAP4.send() , IMAP4.shutdown() メソッドで使われます。このメソ ... 合、メールボックスに対する変更はできません。 IMAP4. send ( data ) ¶ 遠隔のサーバに data を送信します。このメ ... 張命令です。 IMAP4. starttls ( ssl_context=None ) ¶ Send a STARTTLS command. The ssl_context argument is op ...
https://man.plustar.jp/python/library/imaplib.html - [similar]
PREV 1 2 3 4 5 6 NEXT