Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 31 - 40 of about 125 for read (0.079 sec.)
21.10. urllib.robotparser --- robots.txt のためのパーザ — Python 3.6.5 ドキュメ... 6302
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ts.txt ファイルを参照するための URL を設定します。 read ( ) ¶ robots.txt URL を読み出し、パーザに入力します ... ( "http://www.musi-cal.com/robots.txt" ) >>> rp . read () >>> rrate = rp . request_rate ( "*" ) >>> rrate ...
https://man.plustar.jp/python/library/urllib.robotparser.html - [similar]
20.5. xml.etree.ElementTree --- ElementTree XML API — Python 3.6.5 ドキュメント 6302
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... パースされた XML 要素を取得するには、 XMLPullParser.read_events() を呼び出します。以下に、例を示します。 >> ... r . feed ( '<mytag>sometext' ) >>> list ( parser . read_events ()) [('start', <Element 'mytag' at 0x7fa66d ... e text</mytag>' ) >>> for event , elem in parser . read_events (): ... print ( event ) ... print ( elem . ... クローズした時にまだ帰って来ていないイベントは、まだ read_events() で読むことができます。 read_events ( ) ¶ ...
https://man.plustar.jp/python/library/xml.etree.elementtree.html - [similar]
30.1. code --- インタプリタ基底クラス — Python 3.6.5 ドキュメント 6229
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... クラス ¶ ソースコード: Lib/code.py code モジュールはread-eval-print (読み込み-評価-表示)ループをPythonで実装 ... が追加されています。 code. interact ( banner=None , readfunc=None , local=None , exitmsg=None ) ¶ read-eval ... れは InteractiveConsole の新しいインスタンスを作り、 readfunc が与えられた場合は InteractiveConsole.raw_inpu ... ¶ この関数はPythonのインタプリタメインループ(別名、read-eval-printループ)をエミュレートしようとするプログラ ...
https://man.plustar.jp/python/library/code.html - [similar]
21.13. ftplib --- FTPプロトコルクライアント — Python 3.6.5 ドキュメント 6229
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... contents -rw-rw-r-- 1 1176 1176 1063 Jun 15 10:18 README ... drwxr-sr-x 5 1176 1176 4096 Dec 19 2000 pool ... 6 Directory send OK.' >>> ftp . retrbinary ( 'RETR README' , open ( 'README' , 'wb' ) . write ) '226 Trans ... ksize argument specifies the maximum chunk size to read on the low-level socket object created to do the a ... is a file object (opened in binary mode) which is read until EOF using its read() method in blocks of siz ...
https://man.plustar.jp/python/library/ftplib.html - [similar]
21.15. imaplib --- IMAP4 プロトコルクライアント — Python 3.6.5 ドキュメント 6155
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ことで、この例外から復旧できます。 exception IMAP4. readonly ¶ この例外は書き込み可能なメールボックスの状態 ... single (potentially long-lived) structure. Please read セキュリティで考慮すべき点 for best practices. key ... uoted string. In the last case, it is assumed to already be in the correct format. IMAP4 メッセージ番号は、 ... す。このメソッドで確立された接続オブジェクトは IMAP4.read() , IMAP4.readline() , IMAP4.send() , IMAP4.shutdo ...
https://man.plustar.jp/python/library/imaplib.html - [similar]
18.2. ssl --- ソケットオブジェクトに対する TLS/SSL ラッパー — Python 3.6.5 ドキ... 6155
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... される SSLError サブクラス例外です。これは下層の転送(read TCP)が閉じたことは意味しないことに注意してください ... 。 バージョン 3.3 で追加. exception ssl. SSLWantReadError ¶ 読み出しあるいは書き込みを試みようとした際に ... 256_GCM_SHA384, and TLS_CHACHA20_POLY1305_SHA256 were added to the default cipher string. 18.2.1.3. 乱数生 ... 以下に示す追加のメソッドと属性もあります: SSLSocket. read ( len=1024 , buffer=None ) ¶ SSL ソケットからデータ ...
https://man.plustar.jp/python/library/ssl.html - [similar]
What's New In Python 3.3 — Python 3.6.5 ドキュメント 6069
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... with open ( "document.txt" ) as f : content = f . read () except IOError as err : if err . errno == ENOEN ... EACCES , EPERM ): print ( "You are not allowed to read document.txt" ) else : raise は errno をインポート ... with open ( "document.txt" ) as f : content = f . read () except FileNotFoundError : print ( "document.tx ... PermissionError : print ( "You are not allowed to read document.txt" ) 参考 PEP 3151 - Reworking the OS a ...
https://man.plustar.jp/python/whatsnew/3.3.html - [similar]
What's New In Python 3.5 — Python 3.6.5 ドキュメント 6069
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... です: import asyncio async def http_get ( domain ): reader , writer = await asyncio . open_connection ( dom ... ection: close' , b '' , b '' ])) async for line in reader : print ( '>>>' , line ) writer . close () loop ... , open() , posix_fadvise() , posix_fallocate() , pread() , pwrite() , read() , readv() , sendfile() , wai ... イベントループに送信するための新たな run_coroutine_threadsafe() 関数。 (Contributed by Vincent Michel.) New ...
https://man.plustar.jp/python/whatsnew/3.5.html - [similar]
24.3. shlex --- 単純な字句解析 — Python 3.6.5 ドキュメント 5995
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... alization argument, if present, specifies where to read characters from. It must be a file-/stream-like ob ... ject with read() and readline() methods, or a string. If no argum ... ークンスタックに引数文字列をスタックします。 shlex. read_token ( ) ¶ 生 (raw) のトークンを読み出します。プッ ...
https://man.plustar.jp/python/library/shlex.html - [similar]
11.6. tempfile --- 一時ファイルやディレクトリの作成 — Python 3.6.5 ドキュメント 5995
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... oraryFile () >>> fp . write ( b 'Hello world!' ) # read data from file >>> fp . seek ( 0 ) >>> fp . read ( ... ( b 'Hello world!' ) ... fp . seek ( 0 ) ... fp . read () b'Hello world!' >>> # file is now closed and re ...
https://man.plustar.jp/python/library/tempfile.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 NEXT