获取时间戳而不是datetime对象可以使用Python的time模块来实现。
在Python中,时间戳是指自1970年1月1日午夜(GMT时间)以来的秒数。可以使用time模块的time()函数获取当前的时间戳。示例如下:
import time
timestamp = int(time.time())
print(timestamp)
以上代码中,time.time()函数返回当前时间的时间戳,通过int()函数将其转换为整数类型并存储在timestamp变量中,最后打印输出timestamp即可得到时间戳。
在SQLAlchemy中,如果你要使用时间戳作为数据表中的字段,可以使用Integer类型来存储。示例如下:
from sqlalchemy import Column, Integer
from sqlalchemy.ext.declarative import declarative_base
Base = declarative_base()
class MyTable(Base):
__tablename__ = 'my_table'
id = Column(Integer, primary_key=True)
timestamp = Column(Integer) # 使用Integer类型存储时间戳
以上代码定义了一个名为MyTable的数据表,其中有一个名为timestamp的字段用来存储时间戳。
关于SQLAlchemy的更多信息和使用方法,你可以参考腾讯云的云数据库MySQL产品(https://cloud.tencent.com/product/cdb)提供的相关文档和示例。
注意:本回答中没有提及具体的腾讯云产品和产品介绍链接地址,可以根据实际情况进行补充。
领取专属 10元无门槛券
手把手带您无忧上云