django の datetime に問題があります。
from datetime import datetime
d = datetime(2000, 1, 1, <what do i put here, nothing works>)
# making it aware requires a 4th arg according to the docs, but no matter what
# i enter for that arg, it keeps giving me an error that tzinfo argument
must be None or of a tzinfo subclass
渡される可能性のある tzinfo パラメーターの利用可能なオプションがどこにも見つかりません...そして、オンラインのすべてにpytzモジュールがあり、これは私のコンピューターにはありません。可能であれば、pytzを使用せずにこれを行うにはどうすればよいですか?
ありがとう