Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 157 for data (0.016 sec.)
9.7. statistics --- 数理統計関数 — Python 3.6.5 ドキュメント 10906
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 正しい結果が得られるでしょう。 e.g. map(float, input_data) 。 9.7.1. 平均及び中心位置の測度 ¶ これらの関数は ... データの算術平均。 harmonic_mean() Harmonic mean of data. median() データの中央値。 median_low() データの l ... () データの high median。 median_grouped() grouped data の中央値、すなわち50パーセンタイル。 mode() 離散デ ... れているのは見やすさのためです。 statistics. mean ( data ) ¶ Return the sample arithmetic mean of data whic ...
https://man.plustar.jp/python/library/statistics.html - [similar]
21.18. smtpd --- SMTP サーバー — Python 3.6.5 ドキュメント 10617
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... class smtpd. SMTPServer ( localaddr , remoteaddr , data_size_limit=33554432 , map=None , enable_SMTPUTF8=F ... alse , decode_data=False ) ¶ 新たな SMTPServer オブジェクトを作成し、 ... 化時に自身を asyncore のイベントループに登録します。 data_size_limit には DATA コマンドが受け取る最大のバイト ... ssage() in the kwargs['mail_options'] list. decode_data and enable_SMTPUTF8 cannot be set to True at the s ...
https://man.plustar.jp/python/library/smtpd.html - [similar]
20.2. html.parser--- HTML および XHTML のシンプルなパーサー — Python 3.6.5 ドキ... 10202
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... nt ( "Encountered an end tag :" , tag ) def handle_data ( self , data ): print ( "Encountered some data :" ... , data ) parser = MyHTMLParser () parser . feed ( '<html> ... ad Encountered a start tag: title Encountered some data : Test Encountered an end tag : title Encountered ... body Encountered a start tag: h1 Encountered some data : Parse me! Encountered an end tag : h1 Encountere ...
https://man.plustar.jp/python/library/html.parser.html - [similar]
19.8. binascii --- バイナリデータと ASCII データとの間での変換 — Python 3.6.5 ... 9659
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 字が連続していてもかまいません。 binascii. b2a_uu ( data ) ¶ バイナリデータを uuencode して 1 行の ASCII 文 ... 。戻り値は変換後の 1 行の文字列で、改行を含みます。 data の長さは 45 バイト以下でなければなりません。 binas ... ータを与えてもかまいません。 binascii. b2a_base64 ( data , * , newline=True ) ¶ バイナリデータを base64 でエ ... メータに newline を追加しました。 binascii. a2b_qp ( data , header=False ) ¶ quoted-printable 形式のデータを ...
https://man.plustar.jp/python/library/binascii.html - [similar]
21.6. urllib.request --- URL を開くための拡張可能なライブラリ — Python 3.6.5 ド... 9290
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 数を定義しています: urllib.request. urlopen ( url , data=None , [ timeout , ] * , cafile=None , capath=None ... は文字列でも Request オブジェクトでもかまいません。 data must be an object specifying additional data to be ... sent to the server, or None if no such data is needed. See Request for details. urllib.request ... l.HAS_SNI が真の場合のみ)。 バージョン 3.2 で追加: data にイテラブルなオブジェクトを指定できるようになりま ...
https://man.plustar.jp/python/library/urllib.request.html - [similar]
18.5.4. Transports and protocols (callback based API) — Python 3.6.5 ドキュメン... 9163
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... esume_reading() が呼び出されるまでそのプロトコルの data_received() メソッドにデータは渡されません。 resume ... す。読み込み可能データが存在した場合そのプロトコルの data_received() メソッドが一度呼び出されます。 18.5.4.1 ... は get_write_buffer_limits() を使用します。 write ( data ) ¶ トランスポートにバイト列 data を書き込みます。 ... 同期に送信する準備を行います。 writelines ( list_of_data ) ¶ バイト列のデータのリスト (またはイテラブル) を ...
https://man.plustar.jp/python/library/asyncio-protocol.html - [similar]
18.7. asynchat --- 非同期ソケットコマンド/レスポンスハンドラ — Python 3.6.5 ド... 9128
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 義しており、 async_chat を継承して collect_incoming_data() メソッドと found_terminator() メソッドを実装すれ ... async_chat のサブクラスを作成し、 collect_incoming_data() と found_terminator() を定義しなければなりません ... have only one method, more() , which should return data to be transmitted on the channel. The producer ind ... icates exhaustion ( i.e. that it contains no more data) by having its more() method return the empty byte ...
https://man.plustar.jp/python/library/asynchat.html - [similar]
13.1. zlib --- gzip 互換の圧縮 — Python 3.6.5 ドキュメント 8748
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... のエラーによって送出される例外です。 zlib. adler32 ( data [ , value ] ) ¶ data の Adler-32 チェックサムを計算 ... Python に渡って同一の数値を生成するには、 adler32(data) & 0xffffffff を使用します。 zlib. compress ( data ... , level=-1 ) ¶ Compresses the bytes in data , returning a bytes object containing compressed d ... uffer (or the "window size") used when compressing data, and whether a header and trailer is included in t ...
https://man.plustar.jp/python/library/zlib.html - [similar]
21.21. socketserver --- ネットワークサーバのフレームワーク — Python 3.6.5 ドキ... 8586
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... protocol, which provides for continuous streams of data between the client and server. If bind_and_activat ... andlerClass , bind_and_activate=True ) ¶ This uses datagrams, which are discrete packets of information th ... bind_and_activate=True ) ¶ class socketserver. UnixDatagramServer ( server_address , RequestHandlerClass , ... +--------------------+ | UDPServer |------->| UnixDatagramServer | +-----------+ +--------------------+ U ...
https://man.plustar.jp/python/library/socketserver.html - [similar]
13.4. lzma --- LZMA アルゴリズムを使用した圧縮 — Python 3.6.5 ドキュメント 8424
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ィルタチェインの指定 を参照してください。 compress ( data ) ¶ data ( bytes オブジェクト) を圧縮し、少なくとも ... れたデータを格納する bytes オブジェクトを返します。 data の一部は、後で compress() および flush() の呼び出し ... ンプレッサを作成しなければなりません。 decompress ( data , max_length=-1 ) ¶ data ( bytes-like object ) を展 ... 開し、未圧縮のデータを bytes で返します。 data の一部は、後で decompress() の呼び出しに使用するた ...
https://man.plustar.jp/python/library/lzma.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 NEXT