Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 35 for form (0.026 sec.)
21.2. cgi --- CGI (ゲートウェイインタフェース規格) のサポート — Python 3.6.5 ド... 16644
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... プトは、HTTP サーバによって起動され、通常は HTML の <FORM> または <ISINDEX> エレメントを通じてユーザが入力し ... ドが両方とも空の文字列に設定されていないか調べます: form = cgi . FieldStorage () if "name" not in form or " ... addr" not in form : print ( "<H1>Error</H1>" ) print ( "Please fill ... me and addr fields." ) return print ( "<p>name:" , form [ "name" ] . value ) print ( "<p>addr:" , form [ " ...
https://man.plustar.jp/python/library/cgi.html - [similar]
6.5. unicodedata --- Unicode データベース — Python 3.6.5 ドキュメント 9531
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 、空の文字列が返されます。 unicodedata. normalize ( form , unistr ) ¶ Unicode 文字列 unistr の正規形 form... 返します。 form の有効な値は、'NFC'、'NFKC'、'NFD'、'NFKD' です。 ...
https://man.plustar.jp/python/library/unicodedata.html - [similar]
19.1.6. email.headerregistry: カスタムヘッダーオブジェクト — Python 3.6.5 ドキ... 8863
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... l application program, but interfaces are provided for modifying the default behavior for use by more comp ... classes and their attributes, followed by the API for modifying the behavior of HeaderRegistry , and fina ... y. DateHeader ¶ RFC 5322 specifies a very specific format for dates within email headers. The DateHeader p ... arser recognizes that date format, as well as recognizing a number of variant form ...
https://man.plustar.jp/python/library/email.headerregistry.html - [similar]
21.16. nntplib --- NNTP プロトコルクライアント — Python 3.6.5 ドキュメント 8513
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... reader command is sent before authentication is performed. Reader mode is sometimes necessary if you are c ... ibed below. However, some servers only support the former. バージョン 3.2 で追加. バージョン 3.4 で変更: こ ... Unless intentionally delayed, login is normally performed during the NNTP object initialization and separa ... e that this may not be done after authentication information has been transmitted, and authentication occu ...
https://man.plustar.jp/python/library/nntplib.html - [similar]
urllib パッケージを使ってインターネット上のリソースを取得するには — Python 3.6.... 8179
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » urll ... on の例がついています。 urllib.request は URLs (Uniform Resource Locators) を取得するための Python モジュー ... プロードするための詳細については HTML Specification, Form Submission を見て下さい)。 data 引数を渡さない場合 ... ing response codes to messages; entries have the # form {code: (shortmessage, longmessage)}. responses = { ... ontinues off-line' ), 203 : ( 'Non-Authoritative Information' , 'Request fulfilled from cache' ), 204 : ( ...
https://man.plustar.jp/python/howto/urllib2.html - [similar]
19.1.8. email: 使用例 — Python 3.6.5 ドキュメント 8179
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... n be accessed as a dictionary: print ( 'To: {} ' . format ( headers [ 'to' ])) print ( 'From: {} ' . forma ... t ( headers [ 'from' ])) print ( 'Subject: {} ' . format ( headers [ 'subject' ])) # You can also access ... the addresses: print ( 'Recipient username: {} ' . format ( headers [ 'to' ] . addresses [ 0 ] . username ... )) print ( 'Sender name: {} ' . format ( headers [ 'from' ] . addresses [ 0 ] . display ...
https://man.plustar.jp/python/library/email.examples.html - [similar]
18.2. ssl --- ソケットオブジェクトに対する TLS/SSL ラッパー — Python 3.6.5 ドキ... 8179
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... . It should be a string in the OpenSSL cipher list format . do_handshake_on_connect 引数は、 socket.connec ... ( cert , hostname ) ¶ Verify that cert (in decoded format as returned by SSLSocket.getpeercert() ) matches ... 計時間になりました。 SSLSocket. getpeercert ( binary_form=False ) ¶ 接続先に証明書が無い場合、 None を返しま ... ていない場合は、 ValueError が送出されます。 binary_form が False で接続先から証明書を取得した場合、このメソ ...
https://man.plustar.jp/python/library/ssl.html - [similar]
21.8. urllib.parse --- URL を解析して構成要素にする — Python 3.6.5 ドキュメント 8179
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ード: Lib/urllib/parse.py このモジュールでは URL (Uniform Resource Locator) 文字列をその構成要素 (アドレスス ... ースを定義しています。 このモジュールは Relative Uniform Resource Locators (相対 URL) に関するインターネット ... 列引数として渡されたクエリ文字列 ( application/x-www-form-urlencoded 型のデータ) を解析します。解析されたデー ... 列引数として渡されたクエリ文字列 ( application/x-www-form-urlencoded 型のデータ) を解析します。解析されたデー ...
https://man.plustar.jp/python/library/urllib.parse.html - [similar]
6. 式 (expression) — Python 3.6.5 ドキュメント 8179
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 言語リファレ ... ルです。丸括弧、角括弧、または波括弧で囲われた形式 (form) もまた、構文上アトムに分類されます。atom の構文は ... tifier | literal | enclosure enclosure ::= parenth_form | list_display | dict_display | set_display | gene ... ェクトになります。 6.2.3. 丸括弧形式 (parenthesized form) ¶ 丸括弧形式とは、式リストの一形態で、丸括弧で囲っ ... たものです: parenth_form ::= "(" [ starred_expression ] ")" 丸括弧で囲われた ...
https://man.plustar.jp/python/reference/expressions.html - [similar]
21.6. urllib.request --- URL を開くための拡張可能なライブラリ — Python 3.6.5 ド... 8004
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ould be a buffer in the standard application/x-www-form-urlencoded format. The urllib.parse.urlencode() fu ... ce of 2-tuples and returns an ASCII string in this format. It should be encoded to bytes before being used ... data is not None, Content-Type: application/x-www-form-urlencoded will be added as a default. 最後の二つの ... イプは GET です)。引数 data は標準 application/x-www-form-urlencoded 形式のバイトオブジェクトでなければなりま ...
https://man.plustar.jp/python/library/urllib.request.html - [similar]
PREV 1 2 3 4 NEXT