1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

flaskアプリをサーバーに置いたときにタイムゾーンが想定と異なる結果となることについて

Posted at

概要

flaskアプリをサーバーに置いたときにタイムゾーンがUTCとなりました。
ローカル環境ではJSTでしたので想定とは異なります。
これはdatetimeでタイムゾーンを考慮に入れていないため起こります。
つまりdatetimeを扱う際はタイムゾーンを扱うように実装する必要があります。

対応

もともとは下記のように記述していました。

now = datetime.datetime.now()

タイムゾーンを考慮に入れた実装は下記のとおりです。

now = datetime.datetime.now(datetime.timezone(datetime.timedelta(hours=9)))

参考になれば幸いです。

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?