Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 10 for timezone (0.034 sec.)
8.1. datetime --- 基本的な日付型および時間型 — Python 3.6.5 ドキュメント 12728
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 保持しています。 ただ一つの具象 tzinfo クラスである timezone クラスが datetime モジュールで提供されています。 t ... ゾーンや夏時間の計算)を提供します。 class datetime. timezone tzinfo 抽象基底クラスを UTC からの固定オフセットと ... 関係は以下のようになります: object timedelta tzinfo timezone time date datetime 8.1.2. timedelta オブジェクト ¶ ... します。 aware な現在の UTC datetime は datetime.now(timezone.utc) を呼び出すことで取得できます。 now() も参照し ...
https://man.plustar.jp/python/library/datetime.html - [similar]
19.1.14. email.utils: 多方面のユーティリティ — Python 3.6.5 ドキュメント 10780
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... atetime instance, and it is converted to the local time zone according to the system time zone database. If dt ... 効なタイムゾーンの差がある場合、 datetime は対応する timezone tzinfo のあるそつのない datetime です。 バージョン ... ed to be "UTC with no information about the source timezone", and the conventional -0000 is used for the timez ... one. If it is an aware datetime , then the numeric timezone offset is used. If it is an aware timezone with of ...
https://man.plustar.jp/python/library/email.util.html - [similar]
16.3. time --- 時刻データへのアクセスと変換 — Python 3.6.5 ドキュメント 10422
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... できる環境 : Unix 。 バージョン 3.3 で追加. 16.3.3. Timezone Constants ¶ time. altzone ¶ The offset of the loca ... l DST timezone, in seconds west of UTC, if one is defined. This i ... s negative if the local DST timezone is east of UTC (as in Western Europe, including th ... See note below. time. daylight ¶ Nonzero if a DST timezone is defined. See note below. time. timezone ¶ The o ...
https://man.plustar.jp/python/library/time.html - [similar]
19.1.6. email.headerregistry: カスタムヘッダーオブジェクト — Python 3.6.5 ドキ... 9868
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... a datetime instance representing that date. If the timezone of the input date is specified as -0000 (indicatin ... n UTC but contains no information about the source timezone), then datetime will be a naive datetime . If a sp ... ecific timezone offset is found (including +0000 ), then datetime ... will contain an aware datetime that uses datetime.timezone to record the timezone offset. The decoded value o ...
https://man.plustar.jp/python/library/email.headerregistry.html - [similar]
What's New In Python 3.2 — Python 3.6.5 ドキュメント 7919
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... .) datetime と time ¶ datetime モジュールに新たに timezone 型が追加されています。これは tzinfo インターフェイ ... ーン名を返します。これによりタイムゾーンを意識する (timezone-aware な) datetime オブジェクトを容易に作れます: > ... >> from datetime import datetime , timezone >>> datetime . now ( timezone . utc ) datetime.dat ... ime(2010, 12, 8, 21, 4, 2, 923754, tzinfo=datetime.timezone.utc) >>> datetime . strptime ( "01/01/2000 12:00 + ...
https://man.plustar.jp/python/whatsnew/3.2.html - [similar]
8. データ型 — Python 3.6.5 ドキュメント 7651
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ime オブジェクト 8.1.6. tzinfo オブジェクト 8.1.7. timezone オブジェクト 8.1.8. strftime() と strptime() の振る ...
https://man.plustar.jp/python/library/datatypes.html - [similar]
16. 汎用オペレーティングシステムサービス — Python 3.6.5 ドキュメント 7562
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 変換 16.3.1. 関数 16.3.2. Clock ID Constants 16.3.3. Timezone Constants 16.4. argparse --- コマンドラインオプショ ...
https://man.plustar.jp/python/library/allos.html - [similar]
6.3. difflib --- 差分の計算を助ける — Python 3.6.5 ドキュメント 7562
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... difflib , argparse from datetime import datetime , timezone def file_mtime ( path ): t = datetime . fromtimest ... amp ( os . stat ( path ) . st_mtime , timezone . utc ) return t . astimezone () . isoformat () de ...
https://man.plustar.jp/python/library/difflib.html - [similar]
What's New In Python 3.3 — Python 3.6.5 ドキュメント 7562
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... 変更も参照してみてください。---) datetime.datetime.astimezone() メソッドを引数なしで呼び出せるようになりました。 ... e(2012, 5, 25, 21, 39, 24, 465484, tzinfo=datetime.timezone(datetime.timedelta(-1, 72000), 'EDT')) >>> m [ 'Da ... ます。 localtime() : 引数なしで呼び出すと、ローカル timezone を使った aware な datetime として現在ローカル時間を ... ます。aware な datetime を渡して呼び出すと、ローカル timezone を使った aware な datetime に変換します。 ftplib ¶ ...
https://man.plustar.jp/python/whatsnew/3.3.html - [similar]
What's New In Python 3.6 — Python 3.6.5 ドキュメント 7276
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... 。 >>> u0 = datetime ( 2016 , 11 , 6 , 4 , tzinfo = timezone . utc ) >>> for i in range ( 4 ): ... u = u0 + i * ... HOUR ... t = u . astimezone ( Eastern ) ... print ( u . time (), 'UTC =' , t . ...
https://man.plustar.jp/python/whatsnew/3.6.html - [similar]
PREV 1 NEXT