Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 11 - 20 of about 84 for user (0.009 sec.)
What's New In Python 3.2 — Python 3.6.5 ドキュメント 8074
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... msg explanation parser . add_argument ( '-u' , '--user' , # -u or --user option required = True , # make ... it a required argument help = 'login as user' ) コマンド文字列とともにこのパーサを呼び出してみま ... y.example.com', 'sleepy.example.com'] >>> result . user 'skycaptain' このパーサが自動的に作り出したヘルプは ... ( '-h' . split ()) usage: manage_cloud.py [-h] -u USER {deploy,start,stop} HOSTNAME [HOSTNAME ...] Manage ...
https://man.plustar.jp/python/whatsnew/3.2.html - [similar]
25.5. IDLE — Python 3.6.5 ドキュメント 7844
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... On a blank line, it will contain the built-in and user-defined functions and classes in the current names ... o communicate between the IDLE GUI process and the user code execution process. A connection must be estab ... ted by a divider line that says 'RESTART'). If the user process fails to connect to the GUI process, it di ... x with a 'cannot connect' message that directs the user here. It then exits. A common cause of failure is ...
https://man.plustar.jp/python/library/idle.html - [similar]
21.14. poplib --- POP3 プロトコルクライアント — Python 3.6.5 ドキュメント 7844
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... う形の辞書を返します。 バージョン 3.4 で追加. POP3. user ( username ) ¶ userコマンドを送出します。応答はパス ... quit() が呼ばれるまでロックされます。 POP3. apop ( user , secret ) ¶ POP3サーバーにログオンするのに、よりセ ... キュアなAPOP認証を使用します。 POP3. rpop ( user ) ¶ POP3サーバーにログオンするのに、(UNIXのr-コマ ... ass , poplib M = poplib . POP3 ( 'localhost' ) M . user ( getpass . getuser ()) M . pass_ ( getpass . getp ...
https://man.plustar.jp/python/library/poplib.html - [similar]
21.2. cgi --- CGI (ゲートウェイインタフェース規格) のサポート — Python 3.6.5 ド... 7736
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 分割された文字列にします: value = form . getlist ( "username" ) usernames = "," . join ( value ) フィールド ... メソッドはバイト列を返します): fileitem = form [ "userfile" ] if fileitem . file : # It's an uploaded fil ... ue ( "item" ) if isinstance ( item , list ): # The user is requesting more than one item. else : # The use ... クリプトには例えば以下のようなコードを書くでしょう: user = form . getvalue ( "user" ) . upper () このコード ...
https://man.plustar.jp/python/library/cgi.html - [similar]
28.2. ensurepip --- pip インストーラのブートストラップ — Python 3.6.5 ドキュメ... 7736
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... レクトリを root として pip をインストールします。 --user : は、現在インストールされている Python にグローバ ... ensurepip. bootstrap ( root=None , upgrade=False , user=False , altinstall=False , default_pip=False , ver ... バージョンをアップグレードするかどうかを指定します。 user で、グローバルなインストールではなく user スキーム ...
https://man.plustar.jp/python/library/ensurepip.html - [similar]
Python モジュールの配布 — Python 3.6.5 ドキュメント 7627
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python モジュールの ... ed packages made available for use by other Python users Python Packaging Authority は、標準のパッケージン ... されていることを前提にしています。 Python Packaging User Guide にはさらに詳しい情報 currently recommended t ... ools があります。 ガイドを読む ¶ Python Packaging User Guide は、プロジェクトの作成に関わる様々な鍵となる ... 依存する、数多くの選択肢があります。Python Packaging User Guide にはもっと詳しい情報と提案がありますので、ご ...
https://man.plustar.jp/python/distributing/index.html - [similar]
35.13. syslog --- Unix syslog ライブラリルーチン群 — Python 3.6.5 ドキュメント 7397
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... です。 priority 中に、便宜レベルが ( LOG_INFO | LOG_USER のように) 論理和を使ってコード化されていない場合、 ... プションの facility キーワード引数 (デフォルトは LOG_USER ) は明示的に facility が encode されていないメッセ ... 、 LOG_INFO 、 LOG_DEBUG 。 機能: LOG_KERN 、 LOG_USER 、 LOG_MAIL 、 LOG_DAEMON 、 LOG_AUTH 、 LOG_LPR 、 ...
https://man.plustar.jp/python/library/syslog.html - [similar]
29.2. sysconfig --- Python の構成情報にアクセスする — Python 3.6.5 ドキュメント 7289
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 指定してインストールされたときに利用されます。 posix_user : Distutils に user オプションを指定してコンポーネ ... ws などの NT プラットフォーム用のスキームです。 nt_user : user オプションが利用された場合の、NT プラットフ ... six_prefix" Paths: data = "/usr/local" include = "/Users/tarek/Dev/svn.python.org/py3k/Include" platinclud ...
https://man.plustar.jp/python/library/sysconfig.html - [similar]
Python モジュールのインストール (旧版) — Python 3.6.5 ドキュメント 7072
ナビゲーション 索引 モジュール | 前へ | Python » 3.6.5 ドキュメント » Python モジュールのインスト ... キームは相互に排他的であることに注意してください: --user , または --home , または --prefix と --exec-prefix ... を混ぜこぜには使えません。 別の場所へのインストール: user スキーム ¶ このスキームはグローバルな site-package ... プションでこれが可能です: python setup.py install --user ファイルは site.USER_BASE (以降 userbase と書きます ... では pure Python モジュールと拡張モジュールは( site.USER_SITE としても知られる)同じ場所にインストールされま ...
https://man.plustar.jp/python/install/index.html - [similar]
24.1. turtle --- タートルグラフィックス — Python 3.6.5 ドキュメント 7072
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 0 から 10 までの整数 "resizemode": "auto" または "user" または "noresize" "stretchfactor": (正の数, 正の数 ... mode=None ) ¶ パラメータ: rmode -- 文字列 "auto", "user", "noresize" のどれか サイズ変更のモード(resizemod ... e)を "auto", "user", "noresize" のどれかに設定します。もし rmode が与 ... ンのサイズに対応してタートルの見た目を調整します。 "user": 伸長係数(stretchfactor)およびアウトライン幅(outl ...
https://man.plustar.jp/python/library/turtle.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 NEXT