Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 59 for decode (0.031 sec.)
21.18. smtpd --- SMTP サーバー — Python 3.6.5 ドキュメント 15800
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... imit=33554432 , map=None , enable_SMTPUTF8=False , decode_data=False ) ¶ 新たな SMTPServer オブジェクトを作成 ... cess_message() in the kwargs['mail_options'] list. decode_data and enable_SMTPUTF8 cannot be set to True at ... the same time. decode_data specifies whether the data portion of the SMT ... P transaction should be decoded using UTF-8. When decode_data is False (the defau ...
https://man.plustar.jp/python/library/smtpd.html - [similar]
Unicode HOWTO — Python 3.6.5 ドキュメント 9891
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Unic ... 32-bit hex value '\u0394' 加えて、 bytes クラスの decode() メソッドを使って文字列を作ることもできます。この ... を指定します。この引数に使える値は 'strict' ( UnicodeDecodeError を送出する)、 'replace' ( REPLACEMENT CHARACT ... 例はこれらの違いを示しています: >>> b ' \x80 abc' . decode ( "utf-8" , "strict" ) Traceback (most recent call ... last): ... UnicodeDecodeError : 'utf-8' codec can't decode byte 0x80 in pos ...
https://man.plustar.jp/python/howto/unicode.html - [similar]
21.16. nntplib --- NNTP プロトコルクライアント — Python 3.6.5 ドキュメント 9512
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... d , over in overviews : ... print ( id , nntplib . decode_header ( over [ 'subject' ])) ... 1087 Re: Commit ... or None if not present. It is advisable to use the decode_header() function on header values when they may c ... LiBMw7Z3aXMi?= <martin@v.loewis.de>' >>> nntplib . decode_header ( over [ 'from' ]) '"Martin v. Löwis" <mart ... は以下のユーティリティ関数も定義しています: nntplib. decode_header ( header_str ) ¶ Decode a header value, un- ...
https://man.plustar.jp/python/library/nntplib.html - [similar]
7.2. codecs --- codec レジストリと基底クラス — Python 3.6.5 ドキュメント 9395
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 情報は Codec 基底クラス を参照してください。 codecs. decode ( obj , encoding='utf-8' , errors='strict' ) ¶ enc ... 。これはデコードエラーは ValueError (もしくは UnicodeDecodeError のような、より codec に固有のサブクラス) を送 ... 側に返されます。 class codecs. CodecInfo ( encode , decode , streamreader=None , streamwriter=None , incremen ... talencoder=None , incrementaldecoder=None , name=None ) ¶ codec レジストリ内を検索する ...
https://man.plustar.jp/python/library/codecs.html - [similar]
19.1.11. email.header: 国際化されたヘッダ — Python 3.6.5 ドキュメント 9264
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... nal errors is passed as the errors argument to the decode call if s is a byte string. encode ( splitchars='; ... y. Any pieces with a charset of 'unknown-8bit' are decoded as ASCII using the 'replace' error handler. バージ ... 以下のような簡易関数も提供しています。 email.header. decode_header ( header ) ¶ 文字集合を変換せずにメッセージ ... 関数はヘッダのそれぞれのデコードされた部分ごとに、 (decoded_string, charset) という形式の 2要素タプルからなる ...
https://man.plustar.jp/python/library/email.header.html - [similar]
21.8. urllib.parse --- URL を解析して構成要素にする — Python 3.6.5 ドキュメント 8753
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... e 文字にデコードする方法を指定します。これは bytes.decode() メソッドに渡されます。 このような辞書をクエリ文字 ... e 文字にデコードする方法を指定します。これは bytes.decode() メソッドに渡されます。 ペアのリストからクエリ文字 ... peError が、非 ASCII バイト値が渡された場合 UnicodeDecodeError が送出されます。 str と bytes 間で容易に変換を ... de() メソッド (結果に str データが含まれる時用) か decode() メソッド (結果に bytes データが含まれる時用) のど ...
https://man.plustar.jp/python/library/urllib.parse.html - [similar]
19.10. uu --- uuencode形式のエンコードとデコード — Python 3.6.5 ドキュメント 8753
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 666 がそれぞれデフォルト値として与えられます。 uu. decode ( in_file , out_file=None , mode=None , quiet=Fals ... uuencoder による入力で、エラーから復旧できた場合、 decode() は標準エラー出力に警告を表示するかもしれません。 ... xception uu. Error ¶ Exception のサブクラスで、 uu.decode() によって、さまざまな状況で送出される可能性があり ...
https://man.plustar.jp/python/library/uu.html - [similar]
Pythonモジュール索引 — Python 3.6.5 ドキュメント 8753
ナビゲーション 索引 モジュール | Python » 3.6.5 ドキュメント » Pythonモジュール索引 _ | a | b | ... -encoded binary representations. binhex Encode and decode files in binhex4 format. bisect Array bisection al ... implement read-eval-print loops. codecs Encode and decode data and streams. codeop Compile (possibly incompl ... iterators for efficient looping. j json Encode and decode the JSON format. json.tool A command line to valid ... ueue A synchronized queue class. quopri Encode and decode files using the MIME quoted-printable encoding. r ...
https://man.plustar.jp/python/py-modindex.html - [similar]
21.23. http.cookies --- HTTPの状態管理 — Python 3.6.5 ドキュメント 8388
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ) ¶ このクラスは BaseCookie の派生クラスで、 value_decode() は与えられた値の正当性を確認するように、 value_e ... す。 21.23.1. Cookieオブジェクト ¶ BaseCookie. value_decode ( val ) ¶ 文字列表現を値にデコードして返します。戻 ... ためにだけ存在します。 通常 value_encode() と value_decode() はともに value_decode の処理内容から逆算した範囲 ...
https://man.plustar.jp/python/library/http.cookies.html - [similar]
19.6. base64 --- Base16, Base32, Base64, Base85 データの符号化 — Python 3.6.5 ... 8126
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ァベット集合が使われることを意味します。 base64. b64decode ( s , altchars=None , validate=False ) ¶ Base64 エ ... コードされた bytes を返します。 base64. standard_b64decode ( s ) ¶ 標準の base64 アルファベットを使用した byt ... he result can still contain = . base64. urlsafe_b64decode ( s ) ¶ Decode bytes-like object or ASCII string s ... / in the standard Base64 alphabet, and return the decoded bytes . base64. b32encode ( s ) ¶ Base32 を使って ...
https://man.plustar.jp/python/library/base64.html - [similar]
PREV 1 2 3 4 5 6 NEXT