随笔分类 - python
摘要:使用pandas将时间戳数字转为日期格式,发现和当前时间相差8小时,是时区不对导致的 下面提供两种解决方法: 使用tz_localize和tz_convert方法 import time import pandas as pd now_time = time.time() pd.Timestamp(
阅读全文
摘要:from typing import Any, Callable, TypeVar import requests T = TypeVar("T") class MaxRetryError(Exception): def __init__(self): message = "超出最大重试次数" su
阅读全文