Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 41 - 50 of about 98 for time (0.049 sec.)
18.2. ssl --- ソケットオブジェクトに対する TLS/SSL ラッパー — Python 3.6.5 ドキ... 6233
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... スの一致がサポートされるようになりました。 ssl. cert_time_to_seconds ( cert_time ) ¶ cert_time として証明書内 ... efore" や "notAfter" の "%b %d %H:%M:%S %Y %Z" strptime フォーマット (C locale) 日付を渡すと、エポックから ... の積算秒を返します。 例です。 : >>> import ssl >>> timestamp = ssl . cert_time_to_seconds ( "Jan 5 09:34:4 ... 3 2018 GMT" ) >>> timestamp 1515144883 >>> from datetime import datetime ...
https://man.plustar.jp/python/library/ssl.html - [similar]
11.2. os.path --- 共通のパス名操作 — Python 3.6.5 ドキュメント 6194
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... object を受け入れるようになりました。 os.path. getatime ( path ) ¶ path に最後にアクセスした時刻を、エポッ ... ク ( time モジュールを参照) からの経過時間を示す秒数で返しま ... なかった場合は OSError を送出します。 os.stat_float_times() が True を返す場合、この関数の返り値は浮動小数点 ... 数になります。 os.path. getmtime ( path ) ¶ path を最後に更新した時刻を、エポック ( ...
https://man.plustar.jp/python/library/os.path.html - [similar]
14.5. plistlib --- Mac OS X .plist ファイルの生成と解析 — Python 3.6.5 ドキュメ... 6194
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... になれます)、 Data 、 bytes 、 bytesarray または datetime.datetime のオブジェクトです。 バージョン 3.4 で変更 ... ata = b "<lots of binary gunk>" * 10 , aDate = datetime . datetime . fromtimestamp ( time . mktime ( time ... . gmtime ())), ) with open ( fileName , 'wb' ) as fp : dump ...
https://man.plustar.jp/python/library/plistlib.html - [similar]
21.26. xmlrpc.client --- XML-RPC クライアントアクセス — Python 3.6.5 ドキュメン... 6194
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... =None , verbose=False , allow_none=False , use_datetime=False , use_builtin_types=False , * , context=None ... e use_builtin_types flag can be used to cause date/time values to be presented as datetime.datetime object ... bytes objects; this flag is false by default. datetime.datetime , bytes and bytearray objects may be pass ... ed to calls. The obsolete use_datetime flag is similar to use_builtin_types but it applie ...
https://man.plustar.jp/python/library/xmlrpc.client.html - [similar]
16.16. ctypes --- Pythonのための外部関数ライブラリ — Python 3.6.5 ドキュメント 6141
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ェクトと同じように呼び出すことができます。この例では time() 関数 (Unixエポックからのシステム時間を秒単位で返 ... インタとして使う必要があります): >>> print ( libc . time ( None )) 1150640792 >>> print ( hex ( windll . ke ... クセスは毎回新しいオブジェクトを返します: >>> libc . time == libc . time True >>> libc [ 'time' ] == libc [ ... 'time' ] False 次に述べる公開属性が利用できます。それらの ...
https://man.plustar.jp/python/library/ctypes.html - [similar]
13.2. gzip --- gzip ファイルのサポート — Python 3.6.5 ドキュメント 6141
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ne , mode=None , compresslevel=9 , fileobj=None , mtime=None ) ¶ GzipFile クラスのコンストラクタです。 Gzi ... 行います。 0 は圧縮しません。デフォルトは 9 です。 mtime 引数は、圧縮時にストリームの最終更新日時フィールド ... ある場合、現在時刻が使用されます。詳細については、 mtime 属性を参照してください。 圧縮したデータの後ろにさら ... eobj 引数で作成された場合) バージョン 3.2 で追加. mtime ¶ 展開時に、最後に読み取られたヘッダーの最終更新日 ...
https://man.plustar.jp/python/library/gzip.html - [similar]
12.6. sqlite3 --- SQLite データベースに対する DB-API 2.0 インタフェース — Pytho... 6141
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... )) # Larger example that inserts many records at a time purchases = [( '2006-03-28' , 'BUY' , 'IBM' , 1000 ... はその最初の単語だけです。すなわち、もし 'as "x [datetime]"' のようなものを SQL の中で使っていたとすると、読 ... いうことになります。 sqlite3. connect ( database [ , timeout , detect_types , isolation_level , check_same_t ... トランザクションがコミットされるまでロックされます。 timeout パラメータで、例外を送出するまで接続がロックが解 ...
https://man.plustar.jp/python/library/sqlite3.html - [similar]
用語集 — Python 3.6.5 ドキュメント 6102
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » 用語集 ¶ >>> インタ ... n object capable of returning its members one at a time. Examples of iterables include all sequence types ... に名前付き属性でもアクセス出来るクラスです (例えば、 time.localtime() はタプルに似たオブジェクトを返し、その ... 素としてのアクセスが可能です)。 名前付きタプルには、 time.struct_time のような組み込み型もありますし、通常の ...
https://man.plustar.jp/python/glossary.html - [similar]
8.11. pprint --- データ出力の整然化 — Python 3.6.5 ドキュメント 6102
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ython_version': 'source', 'size': 2615733, 'upload_time': '2012-12-26T12:47:03', 'url': 'https://pypi.pyth ... 'python_version': '2.7', 'size': 2916352, 'upload_time': '2012-12-26T12:48:15', 'url': 'https://pypi.pyth ...
https://man.plustar.jp/python/library/pprint.html - [similar]
Python で Curses プログラミング — Python 3.6.5 ドキュメント 6050
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Pyth ... ions in mind; with these terminals, minimizing the time required to redraw the screen was very important. ... reen, and only a portion of the pad displayed at a time. Creating a pad requires the pad's height and widt ... ) function, which can be used to (in effect) set a timer on each getch() ; if no input becomes available w ...
https://man.plustar.jp/python/howto/curses.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 NEXT