Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 11 - 20 of about 122 for using (0.023 sec.)
Pythonモジュール索引 — Python 3.6.5 ドキュメント 7134
ナビゲーション 索引 モジュール | Python » 3.6.5 ドキュメント » Pythonモジュール索引 _ | a | b | ... ncurrent.futures Execute computations concurrently using threads or processes. configparser Configuration f ... Interfaces for gzip compression and decompression using file objects. h hashlib Secure hash and message di ... onized queue class. quopri Encode and decode files using the MIME quoted-printable encoding. r random Gener ... and friends). sqlite3 A DB-API 2.0 implementation using SQLite 3.x. ssl TLS/SSL wrapper for socket objects ...
https://man.plustar.jp/python/py-modindex.html - [similar]
19.6. base64 --- Base16, Base32, Base64, Base85 データの符号化 — Python 3.6.5 ... 7023
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... lsafe_b64encode ( s ) ¶ Encode bytes-like object s using the URL- and filesystem-safe alphabet, which subst ... ( s ) ¶ Decode bytes-like object or ASCII string s using the URL- and filesystem-safe alphabet, which subst ... e , adobe=False ) ¶ Encode the bytes-like object b using Ascii85 and return the encoded bytes . foldspaces ... ( b , pad=False ) ¶ Encode the bytes-like object b using base85 (as used in e.g. git-style binary diffs) an ...
https://man.plustar.jp/python/library/base64.html - [similar]
19.1.9. email.message.Message: Representing an email message using the compat32 ... 6912
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... il.message.Message : Representing an email message using the compat32 API ¶ The Message class is very simil ... you are going to use another policy, you should be using the EmailMessage class instead. An email message c ... t, an attempt is made to decode the original bytes using the charset specified by the Content-Type header, ... cognized by the email package, the body is decoded using the default ASCII charset. This is a legacy method ...
https://man.plustar.jp/python/library/email.compat32-message.html - [similar]
19.1.1. email.message: 電子メールメッセージの表現 — Python 3.6.5 ドキュメント 6912
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... the values of all the extant headers named name . Using the standard (non- compat32 ) policies, the return ... rs, it is automatically encoded in RFC 2231 format using a CHARSET of utf-8 and a LANGUAGE of None . 以下に ... e charset and language may be explicitly specified using the optional charset and language parameters. Opti ... ない場合、 HeaderParseError が発生します。 Note that using this method is subtly different from deleting the ...
https://man.plustar.jp/python/library/email.message.html - [similar]
21.17. smtplib --- SMTP プロトコルクライアント — Python 3.6.5 ドキュメント 6912
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... LO command. Otherwise, the local hostname is found using socket.getfqdn() . If the connect() call returns a ... required from the beginning of the connection and using starttls() is not appropriate. If host is not spec ... a ssl.SSLContext object; This is an alternative to using a keyfile and a certfile and if specified both key ... ge, or a byte string. A string is encoded to bytes using the ascii codec, and lone \r and \n characters are ...
https://man.plustar.jp/python/library/smtplib.html - [similar]
12.6. sqlite3 --- SQLite データベースに対する DB-API 2.0 インタフェース — Pytho... 6788
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ection may be shared across multiple threads. When using multiple threads with the same connection writing ... so')" ) # alternatively you can load the extension using an API call: # con.load_extension("./fts3.so") # d ... wiki con . execute ( "create virtual table recipe using fts3(name, ingredients)" ) con . executescript ( " ... seq_of_parameters . The sqlite3 module also allows using an iterator yielding parameters instead of a seque ...
https://man.plustar.jp/python/library/sqlite3.html - [similar]
28.4. zipapp --- 実行可能な python zip 書庫を管理する — Python 3.6.5 ドキュメン... 6788
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... way to say "python X.Y or later", so be careful of using an exact version like "/usr/bin/env python3.4" as ... .6. Creating Standalone Applications with zipapp ¶ Using the zipapp module, it is possible to create self-c ... plication's dependencies into the myapp directory, using pip: $ python -m pip install -r requirements.txt - ... ny harm if you leave them. Package the application using: $ python -m zipapp -p "interpreter" myapp This wi ...
https://man.plustar.jp/python/library/zipapp.html - [similar]
What's New In Python 3.5 — Python 3.6.5 ドキュメント 6788
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... d by HtmlDiff.make_file() can now be customized by using a new charset keyword-only argument. The default c ... cy.utf8 can be set to True to encode email headers using the UTF-8 charset instead of using encoded words. ... y encodes non-ASCII string usernames and passwords using UTF-8, as recommended by the RFCs. (Contributed by ... ound methods or nested classes, can now be pickled using pickle protocols older than protocol version 4. Pr ...
https://man.plustar.jp/python/whatsnew/3.5.html - [similar]
Unicode オブジェクトと codec — Python 3.6.5 ドキュメント 6677
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... y or through the os.PathLike interface -- to bytes using PyUnicode_EncodeFSDefault() ; bytes objects are ou ... rectly through the os.PathLike interface -- to str using PyUnicode_DecodeFSDefaultAndSize() ; str objects a ... onst char *s , Py_ssize_t size ) ¶ Decode a string using Py_FileSystemDefaultEncoding and the Py_FileSystem ... const char *s ) ¶ Decode a null-terminated string using Py_FileSystemDefaultEncoding and the Py_FileSystem ...
https://man.plustar.jp/python/c-api/unicode.html - [similar]
8.1. datetime --- 基本的な日付型および時間型 — Python 3.6.5 ドキュメント 6677
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... date object in formatted string literals and when using str.format() . For a complete list of formatting d ... etime object in formatted string literals and when using str.format() . For a complete list of formatting d ... from datetime import datetime , date , time >>> # Using datetime.combine() >>> d = date ( 2005 , 7 , 14 ) ... , t ) datetime.datetime(2005, 7, 14, 12, 30) >>> # Using datetime.now() or datetime.utcnow() >>> datetime . ...
https://man.plustar.jp/python/library/datetime.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 NEXT