Python 3.6.5 ドキュメント 検索
Results of 1 - 10 of about 11 for attrs (0.041 sec.)
- 21.23. http.cookies --- HTTPの状態管理 — Python 3.6.5 ドキュメント 13905
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
収まっていなければなりません。 BaseCookie. output ( attrs=None , header='Set-Cookie:' , sep='\r\n' ) ¶ HTTPヘ...
ッダ形式の文字列表現を返します。 attrs と header はそれぞれ Morsel の output() メソッドに...
\n' (CRLF)となっています。 BaseCookie. js_output ( attrs=None ) ¶ ブラウザがJavaScriptをサポートしている場合...
動作する埋め込み可能なJavaScript snippetを返します。 attrs の意味は output() と同じです。 BaseCookie. load (...
- https://man.plustar.jp/python/library/http.cookies.html - [similar]
- 20.2. html.parser--- HTML および XHTML のシンプルなパーサー — Python 3.6.5 ドキ... 10011
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
( HTMLParser ): def handle_starttag ( self , tag , attrs ): print ( "Encountered a start tag:" , tag ) def...
何もしません: HTMLParser. handle_starttag ( tag , attrs ) ¶ このメソッドは開始タグを扱うために呼び出されま...
引数 tag はタグの名前で、小文字に変換されます。引数 attrs は (name, value) のペアからなるリストで、タグの <>...
換されます。 HTMLParser. handle_startendtag ( tag , attrs ) ¶ handle_starttag() と似ていますが、パーサーが X...
- https://man.plustar.jp/python/library/html.parser.html - [similar]
- 20.10. xml.sax.handler --- SAX ハンドラの基底クラス — Python 3.6.5 ドキュメント 9904
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
証されません。 ContentHandler. startElement ( name , attrs ) ¶ 非名前空間モードでの要素の開始を通知します。 n...
引数は要素型の生の XML 1.0 名を文字列として持ち、 attrs 引数は要素の属性を持つ Attributes インターフェイス...
インタフェース を参照) のオブジェクトを保持します。 attrs ととして渡されたオブジェクトはパーサに再利用される...
実な方法ではありません。 属性のコピーを保持するには attrs 属性の copy() メソッドを使用してください。 Content...
- https://man.plustar.jp/python/library/xml.sax.handler.html - [similar]
- 20.12. xml.sax.xmlreader --- XML パーサのインタフェース — Python 3.6.5 ドキュメ... 8553
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
可能です。 class xml.sax.xmlreader. AttributesImpl ( attrs ) ¶ Attributes インタフェース ( Attributes インタフ...
リーダによってインスタンス化されなければなりません。 attrs は属性名と属性値の対応付けを含む辞書風オブジェクト...
ません。 class xml.sax.xmlreader. AttributesNSImpl ( attrs , qnames ) ¶ AttributesImpl を名前空間認識型に改良...
- https://man.plustar.jp/python/library/xml.sax.reader.html - [similar]
- 26.5. unittest.mock --- モックオブジェクトライブラリ — Python 3.6.5 ドキュメン... 8339
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
び出し時にアンパックされます: >>> mock = Mock () >>> attrs = { 'method.return_value' : 3 , 'other.side_effect...
' : KeyError } >>> mock . configure_mock ( ** attrs ) >>> mock . method () 3 >>> mock . other () Trace...
トラクタの呼び出しでも同様に行うことができます: >>> attrs = { 'method.return_value' : 3 , 'other.side_effect...
r } >>> mock = Mock ( some_attribute = 'eggs' , ** attrs ) >>> mock . some_attribute 'eggs' >>> mock . meth...
- https://man.plustar.jp/python/library/unittest.mock.html - [similar]
- 13.6. tarfile --- tar アーカイブファイルの読み書き — Python 3.6.5 ドキュメント 8108
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
りました。 TarFile. extract ( member , path="" , set_attrs=True , * , numeric_owner=False ) ¶ アーカイブからメ...
ます。 path は path-like object でも構いません。 set_attrs が false でない限り、ファイルの属性 (所有者、最終更...
ください。 バージョン 3.2 で変更: パラメーターに set_attrs を追加しました。 バージョン 3.5 で変更: numeric_ow...
- https://man.plustar.jp/python/library/tarfile.html - [similar]
- 20.5. xml.etree.ElementTree --- ElementTree XML API — Python 3.6.5 ドキュメント 8001
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
の名前です。閉じられた要素を返します。 start ( tag , attrs ) ¶ 新しい要素を開きます。 tag は要素の名前です。...
ータです。 XMLParser.feed() は target の start(tag, attrs_dict) メソッドをそれぞれの開始タグに対して呼び、ま...
- https://man.plustar.jp/python/library/xml.etree.elementtree.html - [similar]
- 20.13. xml.parsers.expat --- Expat を使った高速な XML 解析 — Python 3.6.5 ドキ... 7895
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
t # 3 handler functions def start_element ( name , attrs ): print ( 'Start element:' , name , attrs ) def e...
- https://man.plustar.jp/python/library/pyexpat.html - [similar]
- 10.3. operator --- 関数形式の標準演算子 — Python 3.6.5 ドキュメント 7663
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
tor. attrgetter ( attr ) ¶ operator. attrgetter ( *attrs ) 演算対象から attr を取得する呼び出し可能なオブジ...
- https://man.plustar.jp/python/library/operator.html - [similar]
- 5. インポートシステム — Python 3.6.5 ドキュメント 7663
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 言語リファレ
...
lated module attributes get set here: _init_module_attrs ( spec , module ) if spec . loader is None : if sp...
ル属性を設定します (上記擬似コード例の "_init_module_attrs")。 モジュール実行はモジュールの名前空間が構築され...
- https://man.plustar.jp/python/reference/import.html - [similar]