Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 31 - 40 of about 52 for we (0.014 sec.)
18.5.5. ストリーム (コルーチンベースの API) — Python 3.6.5 ドキュメント 6930
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ata = yield from reader . read ( 100 ) # Got data, we are done: close the socket print ( "Received:" , d ...
https://man.plustar.jp/python/library/asyncio-stream.html - [similar]
17.4. concurrent.futures -- 並列タスク実行 — Python 3.6.5 ドキュメント 6930
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... eout = timeout ) as conn : return conn . read () # We can use a with statement to ensure threads are cle ...
https://man.plustar.jp/python/library/concurrent.futures.html - [similar]
8.1. datetime --- 基本的な日付型および時間型 — Python 3.6.5 ドキュメント 6930
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... seconds=0 , milliseconds=0 , minutes=0 , hours=0 , weeks=0 ) ¶ 全ての引数がオプションで、デフォルト値は ... 結果、指定された範囲の外側になった場合には、 OverflowError が送出されます。 負の値を正規化すると、一見混乱 ... elta ( days = 365 ) >>> another_year = timedelta ( weeks = 40 , days = 84 , hours = 23 , ... minutes = 5 ... がサポートする値の範囲から外れていた場合、 OverflowError を送出するかもしれません。また localtime() 呼び ...
https://man.plustar.jp/python/library/datetime.html - [similar]
19.1.4. email.policy: ポリシーオブジェクト — Python 3.6.5 ドキュメント 6930
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... >>> p . stdin . close () >>> rc = p . wait () Here we are telling BytesGenerator to use the RFC correct ... mplementations for a couple of trivial methods, as well as the implementation of the immutability proper ... _factory ¶ A factory function for constructing a new empty message object. Used by the parser when build ... first argument, and any arguments or keywords that were passed to it as additional arguments. By default ...
https://man.plustar.jp/python/library/email.policy.html - [similar]
6.2. re --- 正規表現操作 — Python 3.6.5 ドキュメント 6930
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... matching; expressions like [A-Z] will also match lowercase letters. Full Unicode matching (such as Ü mat ... )) python\.exe >>> legal_chars = string . ascii_lowercase + string . digits + "!#$%&'*+-.^_`|~:" >>> pr ... , "24.1632" ) >>> m . groups () ('24', '1632') If we make the decimal place and everything after it opt ... e.SRE_Match object; span=(0, 1), match='a'> Note however that in MULTILINE mode match() only matches at ...
https://man.plustar.jp/python/library/re.html - [similar]
21.21. socketserver --- ネットワークサーバのフレームワーク — Python 3.6.5 ドキ... 6930
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... , which provides for continuous streams of data between the client and server. If bind_and_activate is t ... le is a file-like object created by the handler; # we can now use e.g. readline() instead of raw recv() ...
https://man.plustar.jp/python/library/socketserver.html - [similar]
21.26. xmlrpc.client --- XML-RPC クライアントアクセス — Python 3.6.5 ドキュメン... 6930
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... code; it handles all the details of translating between conformable Python objects and XML on the wire. ... as < , > , and & will be automatically escaped. However, it's the caller's responsibility to ensure tha ... t the string is free of characters that aren't allowed in XML, such as the control characters with ASCII ... values between 0 and 31 (except, of course, tab, newline and ca ...
https://man.plustar.jp/python/library/xmlrpc.client.html - [similar]
ソケットプログラミング HOWTO — Python 3.6.5 ドキュメント 6840
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » ソケ ... INET , socket . SOCK_STREAM ) # now connect to the web server on port 80 - the normal http port s . conn ... STREAM ) # bind the socket to a public host, and a well-known port serversocket . bind (( socket . getho ... do something with the clientsocket # in this case, we'll pretend this is a threaded server ct = client_t ...
https://man.plustar.jp/python/howto/sockets.html - [similar]
21.24. http.cookiejar --- HTTP クライアント用の Cookie 処理 — Python 3.6.5 ドキ... 6840
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 。これは小さなデータの断片 -- クッキー -- を要求する web サイトにアクセスする際に有用です。クッキーとは we ... のクラスのサブクラスは FileCookieJar のサブクラスと web ブラウザとの連携 節で説明します。 class http.cook ... . DefaultCookiePolicy ( blocked_domains=None , allowed_domains=None , netscape=True , rfc2965=False , rf ... 、このドメインにクッキーを返すこともありません。 allowed_domains が None でない場合、これはこのドメインのみ ...
https://man.plustar.jp/python/library/http.cookiejar.html - [similar]
10.1. itertools --- 効率的なループ実行のためのイテレータ生成関数 — Python 3.6.5... 6840
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... xt () except StopIteration : # Remove the iterator we just exhausted from the cycle. num_active -= 1 nex ... terfalse ( pred , t1 ), filter ( pred , t2 ) def powerset ( iterable ): "powerset([1,2,3]) --> () (1,) ( ... B') --> A B C D # unique_everseen('ABBCcAD', str.lower) --> A B C D seen = set () seen_add = seen . add ... --> A B C D A B # unique_justseen('ABBCcAD', str.lower) --> A B C A D return map ( next , map ( itemgett ...
https://man.plustar.jp/python/library/itertools.html - [similar]
PREV 1 2 3 4 5 6 NEXT