Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 51 - 60 of about 274 for IN (0.103 sec.)
21.17. smtplib --- SMTP プロトコルクライアント — Python 3.6.5 ドキュメント 5443
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ne , [ timeout , ] source_address=None ) ¶ An SMTP instance encapsulates an SMTP connection. It has meth ... onnect() method is called with those parameters during initialization. If specified, local_hostname is u ... sed as the FQDN of the local host in the HELO/EHLO command. Otherwise, the local hostna ... me is found using socket.getfqdn() . If the connect() call returns ...
https://man.plustar.jp/python/library/smtplib.html - [similar]
28.3. venv --- 仮想環境の作成 — Python 3.6.5 ドキュメント 5413
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... このコマンドはまた、 python バイナリのコピーを含む bin サブディレクトリを作成します (Windows では、 pytho ... 作成します)。さらに、 lib/pythonX.Y/site-packages (Windows では Lib\site-packages ) サブディレクトリも (最 ... には、 venv の使用をお勧めします。 参考 Python Packaging User Guide: Creating and using virtual environmen ... ts Windows では、 venv コマンドは次のように実行します: c: ...
https://man.plustar.jp/python/library/venv.html - [similar]
14.2. configparser --- 設定ファイルのパーサー — Python 3.6.5 ドキュメント 5384
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... Lib/configparser.py このモジュールは、 Microsoft Windows の INI ファイルに似た構造を持ったベーシックな設 ... ラムを作ることができます。 注釈 このライブラリでは、Windowsのレジストリ用に拡張された INI 文法はサポート し ... 設定ファイルを例に考えましょう: [DEFAULT] ServerAliveInterval = 45 Compression = yes CompressionLevel = 9 ... topsecret.server.com] Port = 50022 ForwardX11 = no INI ファイルの構造は 下のセクション で解説します。 基 ...
https://man.plustar.jp/python/library/configparser.html - [similar]
17.2. multiprocessing --- プロセスベースの並列処理 — Python 3.6.5 ドキュメント 5384
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... リ » 17. 並行実行 » 17.2. multiprocessing --- プロセスベースの並列処理 ¶ ソースコード: Lib/ ... multiprocessing/ 17.2.1. はじめに ¶ multiprocessing は、 threadin ... セスの生成をサポートするパッケージです。 multiprocessing パッケージは、ローカルとリモート両方の並行処理を提 ... 行われています。このような特徴があるため multiprocessing モジュールを使うことで、マルチプロセッサーマシンの ...
https://man.plustar.jp/python/library/multiprocessing.html - [similar]
21.18. smtpd --- SMTP サーバー — Python 3.6.5 ドキュメント 5384
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... し、それをローカルのアドレス localaddr に関連づけ (bind) ます。 このオブジェクトは remoteaddr を上流の SM ... 。 map is the socket map to use for connections (an initially empty dictionary is a suitable value). If n ... e global socket map is used. enable_SMTPUTF8 determines whether the SMTPUTF8 extension (as defined in RF ... nd and when present is passed to process_message() in the kwargs['mail_options'] list. decode_data and e ...
https://man.plustar.jp/python/library/smtpd.html - [similar]
What's New in Python 2.7 — Python 3.6.5 ドキュメント 5384
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... n » What's New in Python 2.7 ¶ 著者: A.M. Kuchling (amk at amk.ca) こ ... 能について登録してください。可能な限り、 "What's New in Python" は各変更の bug や patch に対してリンクして ... いくに従い、(直接であれ再配布であれ) Python Package Index の効果的な利用が Python 2 ユーザにとってますます ... 々なツールやライブラリが入手出来ます。 Python Packaging User Guide は Python Package Index からソフトウェ ...
https://man.plustar.jp/python/whatsnew/2.7.html - [similar]
17.7. queue --- 同期キュークラス — Python 3.6.5 ドキュメント 5326
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... Pythonのスレッドサポートの状況に依存します。 threading モジュールを参照してください。 The module impleme ... nts three types of queue, which differ only in the order in which the entries are retrieved. In a ... ue, the first tasks added are the first retrieved. In a LIFO queue, the most recently added entry is the ... first retrieved (operating like a stack). With a priority queue, the entries ...
https://man.plustar.jp/python/library/queue.html - [similar]
Python 2 から Python 3 への移植 — Python 3.6.5 ドキュメント 5297
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Pyth ... めです。 移植にあたって助けが必要な場合は python-porting メーリングリストに質問を投稿できます。 短い説明 ¶ ... 確保してください。 ( coverage.py が推奨されます; pip install coverage ) Python 2 と 3 の違いを学びましょう ... ってコードをアップデートしてください。 (たとえば pip install future ) Python 3 サポートに関してデグレを防ぐ ... ために Pylint を使ってください。( pip install pylint ) caniusep ...
https://man.plustar.jp/python/howto/pyporting.html - [similar]
21.12. http.client --- HTTP プロトコルクライアント — Python 3.6.5 ドキュメント 5297
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... .6 で非推奨: key_file and cert_file are deprecated in favor of context . Please use ssl.SSLContext.load_ ... cert_chain() instead, or let ssl.create_default_context() sel ... check_hostname attribute of context should be used instead. class http.client. HTTPResponse ( sock , deb ... PException サブクラスです。 exception http.client. InvalidURL ¶ HTTPException のサブクラスです。ポート番 ...
https://man.plustar.jp/python/library/http.client.html - [similar]
Unicode HOWTO — Python 3.6.5 ドキュメント 5267
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Unic ... 字コードの歴史 ¶ 1968年に American Standard Code for Information Interchange が標準化されました。これは頭文 ... e just wrote programs that didn't display accents. In the mid-1980s an Apple II BASIC program written by ... a French speaker might have lines like these: PRINT "MISE A JOUR TERMINEE" PRINT " ... これらのメッセージはアクセントを含んでいるはず (terminée, paramètre, enregistrés) で、フランス語が読める人 ...
https://man.plustar.jp/python/howto/unicode.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 NEXT