Python 3.6.5 ドキュメント 検索
Results of 1 - 10 of about 19 for Echo (0.010 sec.)
- Argparse チュートリアル — Python 3.6.5 ドキュメント 11747
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Argp
...parse . ArgumentParser () parser . add_argument ( "echo" ) args = parser . parse_args () print ( args . ec...てみましょう: $ python3 prog.py usage: prog.py [-h] echo prog.py: error: the following arguments are requir...ed: echo $ python3 prog.py --help usage: prog.py [-h] echo...positional arguments: echo optional arguments: -h, --help show this help mess... - https://man.plustar.jp/python/howto/argparse.html - [similar]
- 18.5.5. ストリーム (コルーチンベースの API) — Python 3.6.5 ドキュメント 11525
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...ストリームの例 ¶ 18.5.5.7.1. ストリームを使った TCP Echo クライアント ¶ asyncio.open_connection() 関数を使っ...た TCP Echo クライアントです: import asyncio @asyncio . corout...ine def tcp_echo_client ( message , loop ): reader , writer = yield...get_event_loop () loop . run_until_complete ( tcp_echo_client ( message , loop )) loop . close () 参考 Ab... - https://man.plustar.jp/python/library/asyncio-stream.html - [similar]
- 6. モジュール (module) — Python 3.6.5 ドキュメント 11303
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python チュートリア
...effects/ Subpackage for sound effects __init__.py echo.py surround.py reverse.py ... filters/ Subpackage...t することができます。例えば: import sound.effects.echo この操作はサブモジュール sound.effects.echo をロー...な名前で参照しなければなりません。 sound . effects . echo . echofilter ( input , output , delay = 0.7 , atte...もう一つの方法を示します: from sound.effects import echo これもサブモジュール echo をロードし、 echo をパッ... - https://man.plustar.jp/python/tutorial/modules.html - [similar]
- 18.5.4. Transports and protocols (callback based API) — Python 3.6.5 ドキュメン... 10859
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...きます。 18.5.4.3. プロトコルの例 ¶ 18.5.4.3.1. TCP Echo クライアントプロトコル ¶ AbstractEventLoop.create_...connection() メソッドを使用した TCP Echo クライアントで、データを送信しコネクションがクロー...ズされるまで待機します。 import asyncio class EchoClientProtocol ( asyncio . Protocol ): def __init__...World!' coro = loop . create_connection ( lambda : EchoClientProtocol ( message , loop ), '127.0.0.1' , 88... - https://man.plustar.jp/python/library/asyncio-protocol.html - [similar]
- 18.5. asyncio --- 非同期 I/O、イベントループ、コルーチンおよびタスク — Python 3... 10296
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...プロトコル 18.5.4.3. プロトコルの例 18.5.4.3.1. TCP Echo クライアントプロトコル 18.5.4.3.2. TCP Echo サーバ...ープロトコル 18.5.4.3.3. UDP Echo クライアントプロトコル 18.5.4.3.4. UDP Echo サーバ...ストリームの例 18.5.5.7.1. ストリームを使った TCP Echo クライアント 18.5.5.7.2. ストリームを使った TCP Ec...ロセス , 作成 , ストリーム , モジュール , asyncio , Echo , サーバー 前のトピックへ 18.4. selectors --- 高水... - https://man.plustar.jp/python/library/asyncio.html - [similar]
- 18. プロセス間通信とネットワーク — Python 3.6.5 ドキュメント 9954
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...プロトコル 18.5.4.3. プロトコルの例 18.5.4.3.1. TCP Echo クライアントプロトコル 18.5.4.3.2. TCP Echo サーバ...ープロトコル 18.5.4.3.3. UDP Echo クライアントプロトコル 18.5.4.3.4. UDP Echo サーバ...ストリームの例 18.5.5.7.1. ストリームを使った TCP Echo クライアント 18.5.5.7.2. ストリームを使った TCP Ec...ncoreの例: 簡単なHTTPクライアント 18.6.2. 基本的な echo サーバーの例 18.7. asynchat --- 非同期ソケットコマ... - https://man.plustar.jp/python/library/ipc.html - [similar]
- 18.6. asyncore --- 非同期ソケットハンドラ — Python 3.6.5 ドキュメント 7940
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...n.org' , '/' ) asyncore . loop () 18.6.2. 基本的な echo サーバーの例 ¶ この例の基本的な echoサーバーは、 d...ンドラーにディスパッチします: import asyncore class EchoHandler ( asyncore . dispatcher_with_send ): def ha...recv ( 8192 ) if data : self . send ( data ) class EchoServer ( asyncore . dispatcher ): def __init__ ( se...ng connection from %s ' % repr ( addr )) handler = EchoHandler ( sock ) server = EchoServer ( 'localhost'... - https://man.plustar.jp/python/library/asyncore.html - [similar]
- 16.10. curses --- 文字セル表示を扱うための端末操作 — Python 3.6.5 ドキュメント 7940
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...windows, followed by a single doupdate() . curses. echo ( ) ¶ echo モードに入ります。echo モードでは、各文...matic refreshes of pads (such as from scrolling or echoing of input) do not occur. The refresh() and noutr...グを行う通常の "cooked" モードに戻ります。 curses. noecho ( ) ¶ echo モードを終了します。入力のエコーバックは...g func , wrapper() turns on cbreak mode, turns off echo, enables the terminal keypad, and initializes colo... - https://man.plustar.jp/python/library/curses.html - [similar]
- 19.2. json --- JSON エンコーダおよびデコーダ — Python 3.6.5 ドキュメント 7820
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...n.tool を使って妥当性チェックをして見やすく表示: $ echo '{"json":"obj"}' | python -m json.tool { "json": "...obj" } $ echo '{1.2:3.4}' | python -m json.tool Expecting proper...合、それぞれ sys.stdin と sys.stdout が使われます: $ echo '{"json": "obj"}' | python -m json.tool { "json":..."obj" } $ echo '{1.2:3.4}' | python -m json.tool Expecting proper... - https://man.plustar.jp/python/library/json.html - [similar]
- Python で Curses プログラミング — Python 3.6.5 ドキュメント 7718
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Pyth
...() Usually curses applications turn off automatic echoing of keys to the screen, in order to be able to r...certain circumstances. This requires calling the noecho() function. curses . noecho () 通常アプリケーション...s . nocbreak () stdscr . keypad ( False ) curses . echo () cursesに親和性の高い設定をもとに戻します。そして...s for the user to hit a key, displaying the key if echo() has been called earlier. You can optionally spec... - https://man.plustar.jp/python/howto/curses.html - [similar]
