Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 31 - 40 of about 84 for user (0.091 sec.)
29.9. traceback --- スタックトレースの表示または取得 — Python 3.6.5 ドキュメン... 6625
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... を参照してください。 import sys , traceback def run_user_code ( envdir ): source = input ( ">>> " ) try : e ... envdir ) except Exception : print ( "Exception in user code:" ) print ( "-" * 60 ) traceback . print_exc ... ) print ( "-" * 60 ) envdir = {} while True : run_user_code ( envdir ) 次の例は例外とトレースバックの出力 ...
https://man.plustar.jp/python/library/traceback.html - [similar]
1. コマンドラインと環境 — Python 3.6.5 ドキュメント 6625
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python のセットアッ ... にすることが出来ます。 バージョン 3.2.3 で追加. -s ¶ user site-packages directory を sys.path に追加しません ... ugh the standard streams are not affected. PYTHONNOUSERSITE ¶ この環境変数が設定されている場合、 Python は ... 0 -- ユーザごとの site-packages ディレクトリ PYTHONUSERBASE ¶ user base directory を設定します。これは pyt ... hon setup.py install --user 時に user site-packages directory と Distutils ins ...
https://man.plustar.jp/python/using/cmdline.html - [similar]
16.7. logging.config --- ロギングの環境設定 — Python 3.6.5 ドキュメント 6516
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... す。 However, a more generic mechanism is needed for user-defined objects which are not known to the logging ... resolve to the handler from the id. If, however, a user defines a my.package.MyHandler which has an altern ... r for this, a generic resolution system allows the user to specify: handlers : file : # configuration of f ... dlers.SYSLOG_UDP_PORT), handlers.SysLogHandler.LOG_USER) [handler_hand06] class = handlers.NTEventLogHandl ...
https://man.plustar.jp/python/library/logging.config.html - [similar]
21.17. smtplib --- SMTP プロトコルクライアント — Python 3.6.5 ドキュメント 6516
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... TPの VRFY は使用不可になっています。 SMTP. login ( user , password , * , initial_response_ok=True ) ¶ 認証 ... auth_login respectively. They all require that the user and password properties of the SMTP instance are s ... et to appropriate values. User code does not normally need to call auth directly, ...
https://man.plustar.jp/python/library/smtplib.html - [similar]
16.9. getpass --- 可搬性のあるパスワード入力機構 — Python 3.6.5 ドキュメント 6408
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... から行われます。 exception getpass. GetPassWarning ¶ UserWarning のサブクラスで、入力がエコーされてしまった場 ... 合に発生します。 getpass. getuser ( ) ¶ ユーザーの "ログイン名"を返します。 この関数 ... は環境変数 LOGNAME USER LNAME USERNAME の順序でチェックして、最初の空ではな ...
https://man.plustar.jp/python/library/getpass.html - [similar]
15.1. hashlib --- セキュアハッシュおよびメッセージダイジェスト — Python 3.6.5 ... 6408
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... application can symmetrically sign cookies sent to users and later verify them to make sure they weren't t ... pare_digest ( good_sig , sig ) >>> >>> cookie = b 'user-alice' >>> sig = sign ( cookie ) >>> print ( " {0} ... } " . format ( cookie . decode ( 'utf-8' ), sig )) user-alice,b'43b3c982cf697e0c5ab22172d1ca7421' >>> veri ... fy ( cookie , sig ) True >>> verify ( b 'user-bob' , sig ) False >>> verify ( cookie , b '010203 ...
https://man.plustar.jp/python/library/hashlib.html - [similar]
16.8. logging.handlers --- ロギングハンドラ — Python 3.6.5 ドキュメント 6408
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ess=('localhost' , SYSLOG_UDP_PORT) , facility=LOG_USER , socktype=socket.SOCK_DGRAM ) ¶ 遠隔の Unix マシン ... るのに使われます。 facility が指定されない場合、 LOG_USER が使われます。開かれるソケットの型は、 socktype 引 ... _LPR mail LOG_MAIL news LOG_NEWS syslog LOG_SYSLOG user LOG_USER uucp LOG_UUCP local0 LOG_LOCAL0 local1 LO ... れます。もし SMTP サーバが認証を必要とするならば、 (username, password) のタプル形式を credentials 引数に指 ...
https://man.plustar.jp/python/library/logging.handlers.html - [similar]
21.19. telnetlib --- Telnet クライアント — Python 3.6.5 ドキュメント 6408
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... import getpass import telnetlib HOST = "localhost" user = input ( "Enter your remote account: " ) password ... OST ) tn . read_until ( b "login: " ) tn . write ( user . encode ( 'ascii' ) + b " \n " ) if password : tn ...
https://man.plustar.jp/python/library/telnetlib.html - [similar]
16.10. curses --- 文字セル表示を扱うための端末操作 — Python 3.6.5 ドキュメント 6286
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 状態に戻します。 curses. erasechar ( ) ¶ Return the user's current erase character as a one-byte bytes obje ... lar to cbreak mode in that characters typed by the user are immediately available to the program. However, ... ASCII character. curses. killchar ( ) ¶ Return the user's current line kill character as a one-byte bytes ... getstr ( y , x , n ) Read a bytes object from the user, with primitive line editing capacity. window. get ...
https://man.plustar.jp/python/library/curses.html - [similar]
28.1. distutils --- Python モジュールの構築とインストール — Python 3.6.5 ドキュ... 6286
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... py スクリプトを実行します。詳細は Python Packaging User Guide を参照してください。 現在のパッケージと配布シ ...
https://man.plustar.jp/python/library/distutils.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 NEXT