Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 21 - 30 of about 125 for read (0.021 sec.)
19.1.2. email.parser: 電子メールメッセージのパース — Python 3.6.5 ドキュメント 6523
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ystem. FeedParser is more appropriate when you are reading the message from a stream which might block wai ... ting for more input (such as reading an email message from a socket). The FeedParser ... of email messages, such as would be necessary when reading the text of an email message from a source that ... ssage_factory . parse ( fp , headersonly=False ) ¶ Read all the data from the binary file-like object fp , ...
https://man.plustar.jp/python/library/email.parser.html - [similar]
11.1. pathlib --- オブジェクト指向のファイルシステムパス — Python 3.6.5 ドキュ... 6523
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ファイルを開きます: >>> with q . open () as f : f . readline () ... '#!/bin/bash\n' 11.1.2. 純粋パス ¶ 純粋 ... loads/pathlib.tar.bz2') >>> p = PureWindowsPath ( 'README' ) >>> p . with_suffix ( '.txt' ) PureWindowsPat ... h('README.txt') 11.1.3. 具象パス ¶ 具象パスは純粋パスクラス ... ( 'setup.py' ) >>> with p . open () as f : ... f . readline () ... '#!/usr/bin/env python3\n' Path. owner ...
https://man.plustar.jp/python/library/pathlib.html - [similar]
29.3. builtins --- 組み込みオブジェクト — Python 3.6.5 ドキュメント 6450
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... e.''' def __init__ ( self , f ): self . _f = f def read ( self , count =- 1 ): return self . _f . read ( c ...
https://man.plustar.jp/python/library/builtins.html - [similar]
19.1.8. email: 使用例 — Python 3.6.5 ドキュメント 6450
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... the plain text file whose name is in textfile for reading. with open ( textfile ) as fp : # Create a text ... age msg = EmailMessage () msg . set_content ( fp . read ()) # me == the sender's email address # you == th ... with open ( file , 'rb' ) as fp : img_data = fp . read () msg . add_attachment ( img_data , maintype = 'i ... mble = 'You will not see this in a MIME-aware mail reader. \n ' for filename in os . listdir ( directory ) ...
https://man.plustar.jp/python/library/email.examples.html - [similar]
12.4. marshal --- 内部使用向けの Python オブジェクト整列化 — Python 3.6.5 ドキ... 6450
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... とはできません (下記参照)。 There are functions that read/write files as well as functions operating on byte ... (下記を参照してください)。 marshal. load ( file ) ¶ Read one value from the open file and return it. If no ... valid value is read (e.g. because the data has a different Python vers ... ror , ValueError or TypeError . The file must be a readable binary file . 注釈 サポートされていない型を含む ...
https://man.plustar.jp/python/library/marshal.html - [similar]
19.5. mimetypes --- ファイル名を MIME 型へマップする — Python 3.6.5 ドキュメン... 6450
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... のレジストリの設定は無視されていました。 mimetypes. read_mime_types ( filename ) ¶ ファイル filename で与え ... もののコピーで、追加の mime.types 形式のファイルを、 read() あるいは readfp() メソッドを使って、データベース ... すが、オブジェクトに保存されたテーブルを参照します。 read ( filename , strict=True ) ¶ MIME 情報を、 filenam ... ァイルからロードします。これはファイルを解析するのに readfp() を使用します。 strict が True の時 (デフォルト ...
https://man.plustar.jp/python/library/mimetypes.html - [similar]
22.9. ossaudiodev --- OSS互換オーディオデバイスへのアクセス — Python 3.6.5 ドキ... 6450
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... オデバイスオブジェクトを返します。このオブジェクトは read() 、 write() 、 fileno() といったファイル類似オブジ ... 多くサポートしています。 (とはいえ、伝統的な Unix の read/write における意味づけと OSS デバイスの read/write ... れているファイル記述子を返します。 oss_audio_device. read ( size ) ¶ オーディオ入力から size バイトを読みだし ... オデバイスでは、要求した量のデータ全体を取り込むまで read() がブロックします。 oss_audio_device. write ( dat ...
https://man.plustar.jp/python/library/ossaudiodev.html - [similar]
34.3. winreg --- Windows レジストリへのアクセス — Python 3.6.5 ドキュメント 6450
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... OpenKey ( key , sub_key , reserved=0 , access=KEY_READ ) ¶ winreg. OpenKeyEx ( key , sub_key , reserved=0 ... , access=KEY_READ ) ¶ 指定されたキーを開き、 ハンドルオブジェクト を ... すアクセスマスクを指定する整数です。デフォルトは KEY_READ です。その他の利用可能な値については アクセス権 を ... E_SUB_KEY ) アクセス権限の組み合わせ。 winreg. KEY_READ ¶ STANDARD_RIGHTS_READ ( KEY_QUERY_VALUE , KEY_ENU ...
https://man.plustar.jp/python/library/winreg.html - [similar]
26.5. unittest.mock --- モックオブジェクトライブラリ — Python 3.6.5 ドキュメン... 6376
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... mock_open ¶ unittest.mock. mock_open ( mock=None , read_data=None ) ¶ open() の利用を置き換えるための mock ... メソッドにAPIが制限された MagicMock が生成されます。 read_data is a string for the read() , readline() , and ... readlines() methods of the file handle to return. Calls ... to those methods will take data from read_data until it is depleted. The mock of these metho ...
https://man.plustar.jp/python/library/unittest.mock.html - [similar]
18.5.5. ストリーム (コルーチンベースの API) — Python 3.6.5 ドキュメント 6302
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... one , **kwds ) ¶ create_connection() のラッパーで (reader, writer) ペアを返します。 返されたリーダーは Str ... eamReader のインスタンスで、ライターは StreamWriter のイン ... するイベントループインスタンスを、 limit には StreamReader に渡すバッファーリミットを設定します。 この関数は ... r() と同じです。 client_connected_cb 引数は client_reader と client_writer という 2 個の引数で呼び出されま ...
https://man.plustar.jp/python/library/asyncio-stream.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 NEXT