Python 3.6.5 ドキュメント 検索
Results of 1 - 10 of about 22 for received (0.044 sec.)
- 18.5.4. Transports and protocols (callback based API) — Python 3.6.5 ドキュメン... 14763
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
_reading() が呼び出されるまでそのプロトコルの data_received() メソッドにデータは渡されません。 resume_reading...
み込み可能データが存在した場合そのプロトコルの data_received() メソッドが一度呼び出されます。 18.5.4.1.3. Write...
スのみかもしれません: SubprocessProtocol. pipe_data_received ( fd , data ) ¶ 子プロセスが自身の標準出力や標準エ...
col インスタンス上で呼び出されます: Protocol. data_received ( data ) ¶ データを受信したときに呼び出されます。...
- https://man.plustar.jp/python/library/asyncio-protocol.html - [similar]
- 21.21. socketserver --- ネットワークサーバのフレームワーク — Python 3.6.5 ドキ... 11902
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
le_error() method will be called. If no request is received within timeout seconds, handle_timeout() will be c...
k . sendall ( bytes ( data + " \n " , "utf-8" )) # Receive data from the server and shut down received = str (...
) print ( "Sent: {} " . format ( data )) print ( "Received: {} " . format ( received )) この例の出力は次のよう...
py hello world with TCP Sent: hello world with TCP Received: HELLO WORLD WITH TCP $ python TCPClient.py python...
- https://man.plustar.jp/python/library/socketserver.html - [similar]
- 21.18. smtpd --- SMTP サーバー — Python 3.6.5 ドキュメント 9797
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
client, the second value returned by socket.accept received_lines ¶ Holds a list of the line strings (decoded...
using UTF-8) received from the client. The lines have their "\r\n" line...
dentified in the "RCPT TO:" lines from the client. received_data ¶ Holds a string containing all of the data s...
tos リストに格納します。 RSET mailfrom , rcpttos , received_data をリセットしますが、グリーティングはリセットし...
- https://man.plustar.jp/python/library/smtpd.html - [similar]
- 18.5.5. ストリーム (コルーチンベースの API) — Python 3.6.5 ドキュメント 8518
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
) data = yield from reader . read ( 100 ) print ( 'Received: %r ' % data . decode ()) print ( 'Close the socke...
= writer . get_extra_info ( 'peername' ) print ( "Received %r from %r " % ( message , addr )) print ( "Send:...
# Got data, we are done: close the socket print ( "Received:" , data . decode ()) writer . close () # Close th...
- https://man.plustar.jp/python/library/asyncio-stream.html - [similar]
- 18.5.6. サブプロセス — Python 3.6.5 ドキュメント 8215
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
_future self . output = bytearray () def pipe_data_received ( self , fd , data ): self . output . extend ( dat...
ad the output which was collected by the pipe_data_received() # method of the protocol data = bytes ( protocol...
- https://man.plustar.jp/python/library/asyncio-subprocess.html - [similar]
- 21.24. http.cookiejar --- HTTP クライアント用の Cookie 処理 — Python 3.6.5 ドキ... 8215
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
cookies. By default, RFC 2109 cookies (ie. cookies received in a Set-Cookie header with a version cookie-attri...
r instance downgrade RFC 2109 cookies (ie. cookies received in a Set-Cookie header with a version cookie-attri...
None 。 Cookie. rfc2109 ¶ True if this cookie was received as an RFC 2109 cookie (ie. the cookie arrived in a...
- https://man.plustar.jp/python/library/http.cookiejar.html - [similar]
- Logging クックブック — Python 3.6.5 ドキュメント 7996
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Logg
...
g' ) def some_function (): module_logger . info ( 'received a call to "some_function"' ) 出力はこのようになりま...
23:47:11,672 - spam_application.auxiliary - INFO - received a call to 'some_function' 2005-03-23 23:47:11,673...
e listener does not apply level or filter logic to received records. # In practice, you would probably want to...
patches events to loggers based on the name in the received record, which then get dispatched, by the logging...
- https://man.plustar.jp/python/howto/logging-cookbook.html - [similar]
- 18.1. socket --- 低水準ネットワークインターフェイス — Python 3.6.5 ドキュメント 7895
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
'Hello, world' ) data = s . recv ( 1024 ) print ( 'Received' , repr ( data )) 次のサンプルは上記のサンプルとほ...
'Hello, world' ) data = s . recv ( 1024 ) print ( 'Received' , repr ( data )) 次の例は、Windowsで raw socket を...
, addr = s . recvfrom ( can_frame_size ) print ( 'Received: can_id= %x , can_dlc= %x , data= %s ' % dissect_c...
- https://man.plustar.jp/python/library/socket.html - [similar]
- 1. 他のアプリケーションへの Python の埋め込み — Python 3.6.5 ドキュメント 7777
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python インタプリタ
...
s , METH_VARARGS , "Return the number of arguments received by the process." }, { NULL , NULL , 0 , NULL } };...
- https://man.plustar.jp/python/extending/embedding.html - [similar]
- 21.13. ftplib --- FTPプロトコルクライアント — Python 3.6.5 ドキュメント 7777
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
callback function is called for each block of data received, with a single bytes argument giving the data bloc...
- https://man.plustar.jp/python/library/ftplib.html - [similar]