summaryrefslogtreecommitdiffstats
path: root/src/pendulum/_pendulum.pyi
blob: 74d7d830b384c096e65c29b4febbe6cb7e446500 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
from __future__ import annotations

from datetime import date
from datetime import datetime
from datetime import time
from typing import NamedTuple

class Duration:
    years: int = 0
    months: int = 0
    weeks: int = 0
    days: int = 0
    remaining_days: int = 0
    hours: int = 0
    minutes: int = 0
    seconds: int = 0
    remaining_seconds: int = 0
    microseconds: int = 0

class PreciseDiff(NamedTuple):
    years: int
    months: int
    days: int
    hours: int
    minutes: int
    seconds: int
    microseconds: int
    total_days: int

def parse_iso8601(
    text: str,
) -> datetime | date | time | Duration: ...
def days_in_year(year: int) -> int: ...
def is_leap(year: int) -> bool: ...
def is_long_year(year: int) -> bool: ...
def local_time(
    unix_time: int, utc_offset: int, microseconds: int
) -> tuple[int, int, int, int, int, int, int]: ...
def precise_diff(d1: datetime | date, d2: datetime | date) -> PreciseDiff: ...
def week_day(year: int, month: int, day: int) -> int: ...