You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
from datetime import (
|
|
datetime,
|
|
tzinfo,
|
|
)
|
|
|
|
import numpy as np
|
|
|
|
DT64NS_DTYPE: np.dtype
|
|
TD64NS_DTYPE: np.dtype
|
|
|
|
def localize_pydatetime(dt: datetime, tz: tzinfo | None) -> datetime: ...
|
|
def cast_from_unit_vectorized(
|
|
values: np.ndarray, unit: str, out_unit: str = ...
|
|
) -> np.ndarray: ...
|