在 Windows 上获取本地时区名称(Python 3.9 zoneinfo)

2023-07-03Python开发问题
9

本文介绍了在 Windows 上获取本地时区名称(Python 3.9 zoneinfo)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

查看 zoneinfo Python 3.9 中的模块,我想知道它是否还提供了一个方便的选项来检索 Windows 上的本地时区(操作系统设置).

Checking out the zoneinfo module in Python 3.9, I was wondering if it also offers a convenient option to retrieve the local time zone (OS setting) on Windows.

在 GNU/Linux 上,你可以这样做

On GNU/Linux, you can do

from datetime import datetime
from zoneinfo import ZoneInfo

naive = datetime(2020, 6, 11, 12)
aware = naive.replace(tzinfo=ZoneInfo('localtime'))

但在 Windows 上,会抛出

but on Windows, that throws

ZoneInfoNotFoundError: '没有找到关键本地时间的时区'

ZoneInfoNotFoundError: 'No time zone found with key localtime'

所以我还需要使用第三方库吗?例如

so would I still have to use a third-party library? e.g.

import time
import dateutil

tzloc = dateutil.tz.gettz(time.tzname[time.daylight])
aware = naive.replace(tzinfo=tzloc)

由于 time.tzname[time.daylight] 返回一个本地化名称(在我的例子中是德语,例如Mitteleuropische Sommerzeit"),这也不起作用:

Since time.tzname[time.daylight] returns a localized name (German in my case, e.g. 'Mitteleuropische Sommerzeit'), this doesn't work either:

aware = naive.replace(tzinfo=ZoneInfo(tzloc))

有什么想法吗?

附言在 Python 上试试这个 <3.9,使用backports(另见this answer):

p.s. to try this on Python < 3.9, use backports (see also this answer):

pip install backports.zoneinfo
pip install tzdata # needed on Windows

推荐答案

使用系统本地时区不需要使用zoneinfo.您可以在调用 None(或省略)时区rel="noreferrer">datetime.astimezone.

You don't need to use zoneinfo to use the system local time zone. You can simply pass None (or omit) the time zone when calling datetime.astimezone.

来自文档:

如果调用时不带参数(或使用 tz=None),则假定系统本地时区.转换后的日期时间实例的 .tzinfo 属性将设置为时区实例,其区域名称和偏移量从操作系统获取.

If called without arguments (or with tz=None) the system local timezone is assumed. The .tzinfo attribute of the converted datetime instance will be set to an instance of timezone with the zone name and offset obtained from the OS.

因此:

from datetime import datetime

naive = datetime(2020, 6, 11, 12)
aware = naive.astimezone()

这篇关于在 Windows 上获取本地时区名称(Python 3.9 zoneinfo)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

The End

相关推荐

在xarray中按单个维度的多个坐标分组
groupby multiple coords along a single dimension in xarray(在xarray中按单个维度的多个坐标分组)...
2024-08-22 Python开发问题
15

Pandas中的GROUP BY AND SUM不丢失列
Group by and Sum in Pandas without losing columns(Pandas中的GROUP BY AND SUM不丢失列)...
2024-08-22 Python开发问题
17

GROUP BY+新列+基于条件的前一行抓取值
Group by + New Column + Grab value former row based on conditionals(GROUP BY+新列+基于条件的前一行抓取值)...
2024-08-22 Python开发问题
18

PANDA中的Groupby算法和插值算法
Groupby and interpolate in Pandas(PANDA中的Groupby算法和插值算法)...
2024-08-22 Python开发问题
11

PANAS-基于列对行进行分组,并将NaN替换为非空值
Pandas - Group Rows based on a column and replace NaN with non-null values(PANAS-基于列对行进行分组,并将NaN替换为非空值)...
2024-08-22 Python开发问题
10

按10分钟间隔对 pandas 数据帧进行分组
Grouping pandas DataFrame by 10 minute intervals(按10分钟间隔对 pandas 数据帧进行分组)...
2024-08-22 Python开发问题
11