python psycopg2选择时区的current_timestamp问题

Posted

技术标签:

【中文标题】python psycopg2选择时区的current_timestamp问题【英文标题】:python psycopg2 select current_timestamp problem with timezone 【发布时间】:2021-04-18 22:06:27 【问题描述】:

我正在调用一个简单的选择来获取带有 psycopg2 时区的当前时间戳,它正在检索 UTC 时间而不是我的本地时间 (-3)。

datetime.datetime(2021, 1, 13, 20, 49, 47, 931834, tzinfo=psycopg2.tz.FixedOffsetTimezone(offset=0, name=None ))

在 postgresql 中我正在做:

select current_timestamp

这检索(阿根廷时间-3):

2021-01-13 17:39:57

所以这是正确的,但在 Python 中:

class DatabaseUtils():
    def __init__(self):
        self.dsn = "dbname=my_database user=postgres host=127.0.0.1"
        self.conn, self.cur = self.connect_db()
        self.database_name = "my_table"

    def connect_db(self):
        """
        :param DSN: data source name. ex: "dbname=sigbase user=postgres"
        :return: connection, cursor   < If successful
        """
        try:
            # Connect to the database
            conn = psycopg2.connect(self.dsn)
            # Default encoding is UTF8
            conn.set_client_encoding('UTF8')
            cur = conn.cursor()
        except:
            logger.error(f'Could not connect to database self.dsn')
            conn, cur = None, None
        return conn, cur

    def myselect(self):

        query = "select current_timestamp ;"
        self.cur.execute(query)
        records = self.cur.fetchall()
        logger.debug(f"Selected records records")

Select 方法检索:

Selected records [(datetime.datetime(2021, 1, 13, 20, 49, 47, 931834, tzinfo=psycopg2.tz.FixedOffsetTimezone(offset=0, name=None)),)]

所以日期时间对象的偏移量为 0,即 UTC。 是否可以使用正确的时区检索 psycopg2 中的当前时间戳? 如果没有,如何转换 datetime 对象时区?

【问题讨论】:

“in postgresql”是指通过psql吗?如果是这样,这是否与运行 Python 代码的机器在同一台机器上?您使用的是什么操作系统和版本? psql show timezone 返回什么? 是的,我正在使用 dbeaver 执行 postgresql 查询。我正在使用 ubuntu 20.04 和 Python3。是同一台机器。显示时区给我:美国/阿根廷/科尔多瓦 【参考方案1】:

我以这种方式解决了这个问题: 我在类 init 中添加了一个方法来设置时区。通过这种方式,SELECT 语句给出了适当的时间。

def set_timezone(self):
    # Get current time zone.
    timezone = datetime.datetime.now(datetime.timezone.utc).astimezone().tzname()
    # Set timezone.
    self.cur.execute(f"SET TIME ZONE timezone;")

python中记录的结果是:

Selected records [(datetime.datetime(2021, 1, 14, 14, 21, 18, 455322, tzinfo=psycopg2.tz.FixedOffsetTimezone(offset=-180, name=None)),)]

这是正确的(现在是阿根廷时间)。

额外信息: 我基于 psycopg 文档,在示例中是在查询之前先告诉时区。我认为这个库中的 select current_time 默认是在 UTC 下工作的。

来源:https://www.psycopg.org/docs/usage.html#time-zones-handling

【讨论】:

以上是关于python psycopg2选择时区的current_timestamp问题的主要内容,如果未能解决你的问题,请参考以下文章

Python psycopg2 - 选择查询随机花费很长时间

python无网安装psycopg2

Psycopg2 在 postgres 数据库中插入 python 字典

psycopg2 连接问题,无法选择列,但连接正常

安装 psycopg2 osx 10.12 python 3.5.2 - psycopg2 的构建轮失败

python使用psycopg2